

InterviewSolution
1. |
Convert (518)8 to its equivalent Decimal number. 5 |
Answer» Answer: To CONVERT hexadecimal number 518 to DECIMAL, follow these two steps: Start from one's place in 518 : 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 518. Using the above steps, here is the work involved in the solution for converting 518 to decimal number (Don't forget that we start from ones place to so on...) Decimal equivalent of "8" = 8 × 16^0 = 8 Decimal equivalent of "1" = 1 × 16^1 = 16 Decimal equivalent of "5" = 5 × 16^2 = 1280 Decimal equivalent of "518" = 1280168 518 = 1304 Here is the final answer, The hexadecimal number 518 converted to decimal is therefore equal to: 1304 |
|