0% found this document useful (0 votes)
66 views

Convert Binary Numbers To Equivalent Decimal Numbers.: Answer

The document provides examples of converting between binary, decimal, octal, and hexadecimal number systems. Various multi-step conversion problems are shown, such as converting the binary number 101101110 to decimal (1156), octal (1156), and hexadecimal (16E). Different bases are used to group binary digits, such as grouping into sets of 4 bits for octal and 8 bits for hexadecimal.

Uploaded by

AWAIS BUTT
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
66 views

Convert Binary Numbers To Equivalent Decimal Numbers.: Answer

The document provides examples of converting between binary, decimal, octal, and hexadecimal number systems. Various multi-step conversion problems are shown, such as converting the binary number 101101110 to decimal (1156), octal (1156), and hexadecimal (16E). Different bases are used to group binary digits, such as grouping into sets of 4 bits for octal and 8 bits for hexadecimal.

Uploaded by

AWAIS BUTT
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 13

Convert binary numbers to equivalent decimal numbers.

o (a) (1001)2

Answer:

=>

256 128 64 32 16 8 4 2 1

(1 0 0 1) = 1+8 = (9)
2 10

o (b) (10011)2

Answer:

=>

256 128 64 32 16 8 4 2 1

(1 0 0 1 1) = 1+2+16 = (19)
2 10

o (c) (01101101)2

Answer:
=>

256 128 64 32 16 8 4 2 1

(0 1 1 0 1 1 0 1 ) = 1+4+8+32+64 = (109)
2 10

o (d) (10001101)2

Answer:

=>

256 128 64 32 16 8 4 2 1

(1 0 0 0 1 1 0 1 ) = 1+4+8+128 = (141)
2 10

o (e) (11111111)2

Answer:

=>

256 128 64 32 16 8 4 2 1

M AWAIS BUTT 1
(1 1 1 1 1 1 1 1 ) = 1+2+4+8+16+32+64 +128=
2
(255)
10

 (f) (00111011)2

Answer:

=>

256 128 64 32 16 8 4 2 1

(0 0 1 1 1 0 1 1 ) = 1+2+8+16+32= (59)
2 10

o (g) (101110010001)2

Answer:

211 210 29 =>

2048 1024 512 256 128 64 32 16 8 4 2 1

(1 0 1 1 1 0 0 1 0 0 0 1 ) =
2
1+16+128+256+512+2048= (2961)
10

o (h) (11011.101)2

M AWAIS BUTT 2
Answer:

(1 1 0 1 1. 101 ) = 1+2+8+16+0.5+0.125=
2
(27.625)
10

Convert decimal numbers to equivalent binary numbers.

o (a) (45)10

Answer:

=>

256 128 64 32 16 8 4 2 1

(45) = (0 0 1 0 1 1 0 1)
10 2

o (b) (62)10

Answer:

=>

256 128 64 32 16 8 4 2 1

M AWAIS BUTT 3
(62) = (0 0 1 1 1 1 1 0)
10 2

o (c) (255)10

Answer:

=>

256 128 64 32 16 8 4 2 1

(255) = (1 1 1 1 1 1 1 1)
10 2

o (d) (256)10

Answer:

=>

256 128 64 32 16 8 4 2 1

(256) = (1 0 0 0 0 0 0 0 0)
10 2

o (e) (2356)10

Answer:

M AWAIS BUTT 4
211 210 29 =>

2048 1024 512 256 128 64 32 16 8 4 2 1

(2356) = (1 0 0 1 0 0 1 1 0 1 0 0)
10 2

o (f) (4195)10

212 211 210 29 =>

4096 2048 1024 512 256 128 64 32 16 8 4 2 1

(4195) = (1 0 0 0 0 0 1 1 0 0 0 1 1)
10 2

Convert octal numbers to equivalent decimal numbers.

o (a) (45)8

Answer:

=>

421|421

(100|101) = (100101)
2

M AWAIS BUTT 5
(100101)
2= (37)10

o (b) (2173)8

Answer:

=>

4 2 1|4 2 1 | 4 2 1 | 4 2 1

(010|001|111|011) = (010001111011)
2

(010001111011)
2= (1147)10

Convert decimal numbers to equivalent octal numbers.

o (a) (19)10

Answer:

=>

256 128 64 32 16 8 4 2 1

(19) = (10011)
10 2

M AWAIS BUTT 6
|010|011| => |2|3| = (23)
8

o (b) (332)10

Answer:

=>

256 128 64 32 16 8 4 2 1

(332) = (101001100)
10 2

| 101|001|100| => |5|1|4| = (514)


8

o (c) (513)10

Answer:

=>

256 128 64 32 16 8 4 2 1

(513) = (1000000001)
10 2

M AWAIS BUTT 7
| 1|000|000|001| => |1|0|0|1| = (1001)
8

Convert hexadecimal numbers to equivalent decimal numbers.

o (a) (B6)16

Answer:

24 =>

8421|8421

(1011|0110) = (10110110)
2

(10110110)
2= (182)10

o (b) (1FF)16

Answer:

24 =>

8421|8421|8421

(0001|1111|1111) = (000111111111)
2

M AWAIS BUTT 8
(000111111111)
2= (511)10
o (c) (2D3D)16

Answer:

24 =>

8421|8421|8421

(0010|1101|0011|1101) = (0010110100111101)
2

(0010110100111101)
2 = (11581)10
Convert decimal numbers to equivalent hexadecimal numbers.

o (a) (19)10

Answer:

=>

256 128 64 32 16 8 4 2 1

(19) = (10011)
10 2
M AWAIS BUTT 9
|0001|0011|=|1|3|= (D)16
o (b) (332)10

Answer:

=>

256 128 64 32 16 8 4 2 1

(332) = (101001100)
10 2

0010|0100|1100|=|1|4|C|= (14C)16

o (c) (513)10

Answer:

=>

256 128 64 32 16 8 4 2 1

(513) = (1000000001)
10 2

0010|0000|0001|=|2|0|1|= (201)16

M AWAIS BUTT 10
Convert binary numbers to equivalent octal numbers.

o (a) (10110)2

421|421

010|110|=|2|6|= (26)8

o (b) (101101110)2

421|421|421|421
001|001|101|110|=1|1|5|6|= (1156)8

o (c) (10110111)2

421|421|421|421

010|110|111 = |2|6|7| = (267)8

Convert binary numbers to equivalent hexadecimal numbers.

o (a) (10110)2

8421|8421

0001 | 0110 | = |1|6| = (16)16

(b) (101101110)2

8421|8421

M AWAIS BUTT 11
0001|0110 | 1110 | = |1|6|14| = (16E)16

o (c) (10110111)2

8421|8421

1011 | 0111 | = |11|7| = (B7)16

M AWAIS BUTT 12

You might also like