Computer Science, asked by girishpm288, 5 months ago

convert the decimal 2500 to hexadecimal

Answers

Answered by aaaanishns
3

Since hexadecimal is a 16 digit number system, 16 is the key in converting 2500 decimal to hexadecimal.

a) Divide 2500 by 16 and then separate what is on the left and right side of the decimal point.

b) Multiply the right side of the decimal point by 16 (and convert to hex if neccessary) and keep that number to the side.

c) Divide the left side of the decimal point by 16 and separate what is on the left and right side of the decimal point.

d) Repeat step b and c above until the value on the left side is 0.

e) Then simply enter the numbers you got in step b in reverse order to get the answer.

2500 / 16 = 156.25

0.25 x 16 = 4

156 / 16 = 9.75

0.75 x 16 = C

9 / 16 = 0.5625

0.5625 x 16 = 9

Thus, 2500 decimal converted to hex is as follows:

9C4

plz mark my answer as the brainiest

Similar questions