| 1. |
Convert hexadecimal to decimal (DF2) 16 |
|
Answer» Answer: 3570 Explanation: To convert hexadecimal number DF2 to decimal, FOLLOW these TWO steps: Start from one's place in DF2 : multiply ones place with 16^0, tens place with 16^1, hundreds place with 16^2 and so on from right to left Add all the product we got from step 1 to get the decimal equivalent of DF2. Using the above steps, here is the work involved in the solution for converting DF2 to decimal number (Don't forget that we start from ones place to so on...) Decimal equivalent of "2" = 2 × 16^0 = 2 Decimal equivalent of "F" = (F) 15 × 16^1 = 240 Decimal equivalent of "D" = (D) 13 × 16^2 = 3328 Decimal equivalent of "DF2" = 22403328 DF2 = 3570 Here is the final answer, The hexadecimal number DF2 CONVERTED to decimal is therefore equal to: 3570 |
|