Computer Science, asked by sukhmandeepsivia, 1 year ago

How to convert number into binary,hexadecimal?

Answers

Answered by harshikha
0
Hope it helps!!
Mark me as brainliest!!
Attachments:

harshikha: mark me as brainliest!
Answered by SWAYAMKUSHWAHA
0
dConvert each 4 binary digits to hex digit  according to this table:

BinaryHex000000001100102001130100401015011060111710008100191010A1011B1100C1101D1110E1111F

Example #1

Convert (01001110)2 to hex:

(0100)2 = (4)16

(1110)2 = (E)16

So

(01001110)2 = (4E)16

Example #2

Convert (0100101000000001)2 to hex:

(0100)2 = (4)16

(1010)2 = (A)16

(0000)2 = (0)16

(0001)2 = (1)16

So

(0100101000000001)2 = (4A01)16

Similar questions