Test Problems Flashcards
How many values can be stored in 5 bits?
32
112 base 8 is equivalent to _____ in base 10
74
Convert the binary value 100011 to decimal assuming unsigned representation .
35
Hex value 2A=____ in decimal
42
Hex value 2A=____ binary
0010-1010
Binary 11000101=____ in hexadecimal
C5
What does the bit indicate when adding two UNSIGNED BINARY values?
Carry
What is the highest value that can be stored in 4 bits assuming unsigned representation ?
15
Assuming signed magnitude 8 bit representation, what is the decimal value of binary 10001010?
-10
Convert the following decimal number to binary assuming 8-bit two’s complement binary representation: 23
0001-0111
Convert the following decimal number to binary assuming 8-bit two’s complement binary representation: -23
1110-1001
Convert the binary number to decimal assuming bit two’s 8 - bit twos complement binary representation. 11101101
-19
What 4 status bits get set when adding 2 two’s complement binary numbers ?
C, N, O, Z
Carry, negative, overflow, zero
Convert the binary value 110.1 to decimal
6.5
Perform the operation on the binary value: NOT 10001001
0111-0110