Computer Science, asked by nuraizaismail7c, 10 months ago

convert the number 200 to hexdecimal number system​

Answers

Answered by shriyansh7
1

Answer:

Decimal base 10 Hex base 16

100 - 64

200 - C8

1000 - 3E8

2000 - 7D0

Answered by snehabirajdar
0

(200)10 = (C8)16

Step by step solution

Step 1: Divide (200)10 successively by 16 until the quotient is 0:

200/16 = 12, remainder is 8

12/16 = 0, remainder is 12

Step 2: Read from the bottom (MSB) to top (LSB) as C8. So, C8 is the hexadecimal equivalent of decimal number 200 (Answer).

Decimal: 0 1 2 3 4 5 6 7

Hexa 0 1 2 3 4 5 6 7

Decimal: 8 9 10 11 12 13 14 15

Hexa 8 9 A B C D E F

Similar questions