What is the binary number 0111 1011 as unsigned decimal number?
a. 78
b. 49
c. 123
d. 173
e. None of the above
0111 1011 in decimal
(2^7 * 0) + (2^6 * 1) + (2^5 * 1) +(2^4 * 1) + (2^3 * 1) + (2^2
* 0) + (2^1 * 1) + (2^0 * 1)
64 + 32 + 16 + 8 +2 + 1=123
so the answer is 123.
if you like the answer please provide a thumbs up.
What is the binary number 0111 1011 as unsigned decimal number? a. 78 b. 49 c....
Question 28 What is the 4-bit (straight) binary equivalent of the decimal 13? [LO:DCRT 2 marks 1011 0111 1101 1110 0
Question 28 What is the 4-bit (straight) binary equivalent of the decimal 13? [LO:DCRT 2 marks 1011 0111 1101 1110 0
What is 345 as an unsigned decimal number? It is 34 with subscript of 5. Not 345! a. 8 b. 23 c. 34 d. 51 e. None of the above
Help
Convert the decimal number 348 to a. binary b. hexadecimal Show your work. Show the decimal equivalent of each of the numbers if they are interpreted as: 10111001 00101101 a. Unsigned binary b. Signed binary Subtract the two pairs of numbers. Show the operand and the results in decimal and binary. (Indicate if there is overflow) a. Assuming there arc unsigned b. Assuming they are signed 1101-0100 1011-1100
1. a) Perform the following binary subtractions of unsigned binary numbers. Convert your answer to decimal. i) 101001012 - 01001001, ii) 110110102 - 100100112 b) Repeat the calculations above but for when the binary numbers are in two's complement form. Comment on the results of the two methods used, noting and discrepancies. 2. Find the sums of the following unsigned hexadecimal numbers. Indicate whether or not the sum overflows an equivalent 8-bit binary result. a) 1116 +2216 b) 1716 +3516...
Exercise 1.25 Convert the following decimal numbers to unsigned binary numbers Exercise 1.31 Repeat Exercise 1.29, but convert to 8-bit sign/magnitude numbers KExercise 1.32 Repeat Exercise 1.30, but convert to 8-bit sign/magnitude numbers (a) 4210 (b) 6310 Exercise 1.33 Convert the following 4-bit two's complement numbers to 8-bit two's complement numbers. (c) 22910 (d) 84510 (a) 0101 b) 1010 XExercise 1.26 Convert the following decimal numbers to unsigned binary numbers. Exercise 1.34 Convert the following 4-bit two's complement numbers to...
PROBLEMS 9-11 Perform the following number base conversions. (a) 1011, to decimal (b) 1000 1000, to decimal (c) 126,to binary (d) 1025, to binary
The largest unsigned decimal number that can be represented in binary using six bits is
programming in c convert binary representation of a number to an unsigned integer. T,t=1, F,f=0 other characters are ignored STOP converting when a space appear or at the end of the string. for example ftft or FTFT =5, bTFdt TT=5 unsigned int 123(const char *binary) { }
The unsigned binary equivalent of the decimal number 127 is O 01111111 11111111 10000000 00111111
What decimal value does the 8-bit binary number 10110111 have if: a) it is interpreted as an unsigned number? b) it is on a computer using signed-magnitude representation? c) it is on a computer using one’s complement representation? d) it is on a computer using two’s complement representation? e) it is on a computer using excess-127 representation?