Question

Write the result of the following bit operations: Written "mathematically", where all numbers are written in...

Write the result of the following bit operations:
Written "mathematically", where all numbers are written in the binary system:

11101010 OR 10110001
11101010 AND 10110001
11101010 XOR 10110001

Homework Answers

Answer #1

1)
OR Truth table: 
0 0 0
0 1 1
1 0 1
1 1 1

11101010
10110001
-------------
11111011
-------------
Answer: 11111011

2)
AND Truth table: 
0 0 0
0 1 0
1 0 0
1 1 1

11101010
10110001
-------------
10100000
-------------
Answer: 10100000

3)
XOR Truth table: 
0 0 0
0 1 1
1 0 1
1 1 0

11101010
10110001
-------------
01011011
-------------
Answer: 01011011


Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
Design a combinational circuit that forms the 2-bit binary sum S1S0 of two 2-bit numbers X1X0...
Design a combinational circuit that forms the 2-bit binary sum S1S0 of two 2-bit numbers X1X0 and Y1Y0 and can produce a carry output C. Design the entire circuit with the help of three half adder circuit implementing each of the three outputs with XOR-AND and OR gates.
A). Convert following decimal integers to 8-bit two's complement binary numbers using any method . Explain...
A). Convert following decimal integers to 8-bit two's complement binary numbers using any method . Explain why, If decimal number cannot be represented with 8 bits. a. -46 b. -63 c. 118 d. -128 e. 128 B). Perform following operations by converting the decimal numbers to 8-bit two’s complement binary. Check results by converting final result to decimal a. 94-53 b. 15–84
2 Convert each of the following octal numbers to 10-bit binary, hexadecimal, and decimal. Show your...
2 Convert each of the following octal numbers to 10-bit binary, hexadecimal, and decimal. Show your work. (a) 368 (b) 7568 3 Convert the following binary values into Decimal, Octal and hexadecimal. Show your work. (a) 111010101011112 (b) 1010111011001102 (c) 1011101010001112 (d) 1111101011102 4 Convert the following hexadecimal numbers to 16-bit binary and decimal numbers. Show your work. (a) FE9816 (b) FCAD16 (c) B00C16 (d) FEDF16 5 Perform the addition on the following unsigned binary numbers. Indicate whether or not...
When adding two 8 bit binary numbers, which of the following statements is true? Select one:...
When adding two 8 bit binary numbers, which of the following statements is true? Select one: a. All bits are shifted to the right by one place, giving a 7 bit number b. The result might require 16 bits to store c. The result will require the same bits as the larger number d. The result might require 9 bits to store e. The result will also be a 8 number
Write a program in MASM (32 bit) that calculates the sum of all odd numbers in...
Write a program in MASM (32 bit) that calculates the sum of all odd numbers in the Fibonacci sequence between 0 and 1,000,000. ***Please Complete in MASM 32 bit!!***
Find the two’s complement representation for the following numbers, assuming they are represented as a 16-bit...
Find the two’s complement representation for the following numbers, assuming they are represented as a 16-bit number. Write the value in both binary and hexadecimal for full credit. a. -72 b. 1314 c. 594 d. -1194
QUESTION 1 During a single clock tick, how many 64-bit values can be written to an...
QUESTION 1 During a single clock tick, how many 64-bit values can be written to an input of a register file with 8 64-bit registers (i.e. an 8x64 register file)? QUESTION 2 Suppose you are designing a processor that contains a register file with 32 32-bit registers (i.e. a 32x32 register file). What is the minimum number of bits required in order to select which register is being written to? QUESTION 3 If the decimal value, 30, is shifted to...
4) Convert the following binary values from 4 bit numbers to 7 bit values a) 2s...
4) Convert the following binary values from 4 bit numbers to 7 bit values a) 2s complement value: 0101 b) 2s complement value: 1010 c) Unsigned binary value: 0101 d) Unsigned binary value: 1010 e) Sign Magnititude value: 0101 f) Sign Magnititude value: 1010
Concern the following 16-bit floating point representation: The first bit is the sign of the number...
Concern the following 16-bit floating point representation: The first bit is the sign of the number (0 = +, 1 = -), the next nine bits are the mantissa, the next bit is the sign of the exponent, and the last five bits are the magnitude of the exponent. All numbers are normalized, i.e. the first bit of the mantissa is one, except for zero which is all zeros. 1. How many significant binary digits do numbers in this representation...
EE 263 Homework Assignment 1    Perform the following conversions: Convert 51 (decimal) to binary and...
EE 263 Homework Assignment 1    Perform the following conversions: Convert 51 (decimal) to binary and to hex Convert 0xD1 (hexadecimal) to binary and to decimal Convert 0b11001001 (binary) to hex and to decimal Find the 2’s complement of the following 4-bit numbers 1101 0101 Perform the following 4-bit unsigned operations. For each, indicate the 4-bit result and the carry bit, and indicate if the answer is correct or not. 5 + 8 2 + 12 13 – 7 4...