Computer Science, asked by mukilan32, 3 months ago

convert (1920)base10 into binary them,convert that binary number to hexa decimal

Answers

Answered by renurtiwari940
2

Answer:

convert decimal number 1920 to binary, follow these steps:

step 1)Divide 1920 by 2 keeping notice of the quotient and the remainder.

step 2)Continue dividing the quotient by 2 until you get a quotient of zero.

step 3) Then just write out the remainders in the reverse order to get binary equivalent of decimal number 1920.

step 4)Using the above steps, here is the work involved in the solution for converting 1920 to binary number:

1920 / 2 = 960 with remainder 0

960 / 2 = 480 with remainder 0

480 / 2 = 240 with remainder 0

240 / 2 = 120 with remainder 0

120 / 2 = 60 with remainder 0

60 / 2 = 30 with remainder 0

30 / 2 = 15 with remainder 0

15 / 2 = 7 with remainder 1

7 / 2 = 3 with remainder 1

3 / 2 = 1 with remainder 1

1 / 2 = 0 with remainder 1

Then just write down the remainders in the reverse order to get the answer, The decimal number 1920 converted to binary is therefore equal to :

11110000000

Similar questions