Convert the following binary numbers to decimal (6 points):

11111
101011
1101011

Convert the following decimal numbers to binary (6 points):
49
367
1023

Convert the following hex numbers to decimal (4 points):
ACE
800

Convert the following decimal numbers to hex (4 points):
64,206
16,383

If b is a binary number, what number is represented by b0? That is, what number do you get when you place a 0 at the end of a binary number? What happens if you place two 0's at the end? Generalize your answer: what happens if you place n 0's at the end? (3 points)

Determine the binary representation of the following integers using 8 bits (6 points):
-15
-64
-127

1 answer

1). binary to decimal
11111 = 2^4 2^3 2^2 2^1 2^0 = 16+8+4+2+1 = 31
Ans. 31

101011 = 43

1101011 = 107

2). decimal to binary
49 = 00110001
367 = 0000000101101111
1023 = 0000001111111111

3). Hex to decimal
ACE = 2766
800 = 2048

4). Decimal to hex
64,206 = FACE
16,383 = 3FFF

5). Binary using octal
-15 = -1101
-64 = -110100
-127 = -1010111
Similar Questions
  1. I.Explain the wayto Perform Decimal to Binary Conversion.g.(255)10 h.(256)10 steps f.(224)10 i.Take your own,at least 4
    1. answers icon 1 answer
  2. ow to Convert Binary to Decimal Numbers?Describe the stepsofh.(01001001)2 e.(11100100)2 II.Convert the following binary numbers
    1. answers icon 1 answer
  3. Decimal to binary convertionI Explain the way to Perform Decimal to Binary Conversion. II. Convert the following binary numbers
    1. answers icon 1 answer
  4. Question 2a.What is a Binary Number System? c.What is Binary to Decimal Conversion? d.How to Convert Binary to Decimal
    1. answers icon 1 answer
more similar questions