Computer Science, asked by pornimapawar1111, 8 months ago

convert the binary number 10111100to hexadecimal number​

Answers

Answered by AryanDogra2007
0

Answer:   Step by step solution

Step 1: Write down the binary number:

10111100

Step 2: Group all the digits in sets of four starting from the LSB (far right). Add zeros to the left of the last digit if there aren't enough digits to make a set of four:

1011 1100

Step 3: Use the table below to convert each set of three into an hexadecimal digit:

1011 = B, 1100 = C

So, BC is is the hexadecimal equivalent to the decimal number 10111100.

To convert from binary to hexadecimal use the following table:

Bin: 0000 0001 0010 0011 0100 0101 0110 0111

Hexa: 0 1 2 3 4 5 6 7

Bin: 1000 1001 1010 1011 1100 1101 1110 1111

Hexa: 8 9 A B C D E F

Answered by samarthvijaykharat
0

Answer:

(10111100)2 = (BC)16

Explanation:

Step by step solution

Step 1: Write down the binary number:

10111100

Step 2: Group all the digits in sets of four starting from the LSB (far right). Add zeros to the left of the last digit if there aren't enough digits to make a set of four:

1011 1100

Step 3: Use the table below to convert each set of three into an hexadecimal digit:

1011 = B, 1100 = C

So, BC is is the hexadecimal equivalent to the decimal number 10111100.

Similar questions