a. Assign the values 9 and 14 to variables a and b respectively. b. Print the binary values of a and b (use the bin built-in function). c. Calculate the value of a and b, print the result in binary. d. Calculate the value of a or b, print the result in binary. e. Examine the results. Can you see how they were arrived at? Example output: ) binary of a = 0b1001 ) binary of b = 0b1110 =) binary of a & b = 0b1000 d) binary of a b = 0b1111 Add the following at the end of each script to show your results: Execution results: Daste execution results here
a. Assign the values 9 and 14 to variables a and b respectively. b. Print the binary values of a and b (use the bin built-in function). c. Calculate the value of a and b, print the result in binary. d. Calculate the value of a or b, print the result in binary. e. Examine the results. Can you see how they were arrived at? Example output: ) binary of a = 0b1001 ) binary of b = 0b1110 =) binary of a & b = 0b1000 d) binary of a b = 0b1111 Add the following at the end of each script to show your results: Execution results: Daste execution results here
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
in pyth please

Transcribed Image Text:### Example Script for Binary Operations in Python
This educational exercise guides you through performing binary operations in Python. Follow the steps below to calculate and print results using Python's built-in functions.
#### Instructions:
1. **Assign Variables**
- Assign the value `9` to variable `a`.
- Assign the value `14` to variable `b`.
2. **Print Binary Values**
- Use the `bin` built-in function to print the binary values of `a` and `b`.
3. **Binary AND Operation**
- Calculate the value of `a & b` and print the result in binary form.
4. **Binary OR Operation**
- Calculate the value of `a | b` and print the result in binary form.
5. **Examine Results**
- Analyze the printed results to understand how the binary operations work.
#### Example Output:
- **Binary Representation:**
- `b) binary of a = 0b1001`
- `b) binary of b = 0b1110`
- **Binary Operations:**
- `c) binary of a & b = 0b1000`
- `d) binary of a | b = 0b1111`
#### Code Implementation:
Add the following code to the end of each script to display your results:
```python
# Execution results:
# paste execution results here
```
This exercise helps reinforce the understanding of binary operations and their applications in programming.
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution!
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 1 images

Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Recommended textbooks for you

Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON

Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education