0% found this document useful (0 votes)
6 views1 page

Pagal_quiz 3 - Number System

The document contains conversions between binary, hexadecimal, and decimal number systems. It provides specific examples, including converting the binary number 101011010010 to hexadecimal (AD2), converting the hexadecimal number 3FA9B to binary (0011 1111 1010 1001 1011), and calculating its decimal equivalent (260763). Additionally, it converts another hexadecimal number, 1C3F2, to decimal (115698).

Uploaded by

charishpagal1
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views1 page

Pagal_quiz 3 - Number System

The document contains conversions between binary, hexadecimal, and decimal number systems. It provides specific examples, including converting the binary number 101011010010 to hexadecimal (AD2), converting the hexadecimal number 3FA9B to binary (0011 1111 1010 1001 1011), and calculating its decimal equivalent (260763). Additionally, it converts another hexadecimal number, 1C3F2, to decimal (115698).

Uploaded by

charishpagal1
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Pagal, Charish C.

BSA 2-C

1. Convert the binary number 101011010010 to hexadecimal:


1010 1101 0010
1010- A
1101- D
0010- 2
Answer: AD2

2. Convert the hexadecimal number 3FA9B to binary:


3- 0011
F -1111
A- 1010
9- 1001
B- 1011
Answer: 0011 1111 1010 1001 1011

3. Convert the hexadecimal number 3FA9B to decimal:


3*16^4 = 3* 65536 = 196608
F*16^3 = 15* 4096 = 61440
A*16^2 = 10*256 = 2560
9*16^1 = 9*16 = 144
B*16^0 = 11*1 = 11
196608 + 61440 + 2560 + 144 + 11 = 260763

5. Convert the hexadecimal number 1C3F2 to decimal:


1*16^4 = 1*65536 = 65536
C* 16^3 = 12*4096 = 49152
3* 16^2 = 3 *256 = 768
F *16^1 = 15 *16 = 240
2 * 16^0 = 2 *1 = 2
65536 + 49152 + 768 + 240 + 2 = 115698

You might also like