Computer Science, asked by sinesh181981, 1 month ago

convert decimal into its Hexadecimal equivalent ( 447)​

Answers

Answered by rajenaditi140
0

Answer:

1BF16

Explanation:

To convert decimal number 447 to hexadecimal, follow these steps:

Step 1 Divide 447 by 16 keeping notice of the quotient and the remainder.

Step 2 Continue dividing the quotient by 16 until you get a quotient of zero.

Step 3 Then just write out the remainders in the reverse order to get hexadecimal equivalent of decimal number 447.

Step 4 Using the above steps, here is the work involved in the solution for converting 447 to hexadecimal number:

447 / 16 = 27 with remainder 15 (F)

27 / 16 = 1 with remainder 11 (B)

1 / 16 = 0 with remainder 1

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

1BF 16

Similar questions