125k views
5 votes
Convert 1AA from hexadecimal to decimal.

2 Answers

3 votes

1AA = 426

What an odd class...

User Mmr
by
6.1k points
3 votes

Answer:

426 in decimal.

Explanation:

Step 1) Count the digits in 1AA, which in this case is 3 digits, and convert each digit to Hex.

Step 2) Starting from the last number in Step 1, multiply the first number with 1, the second number with 16, and the third number with 256.

Step 3) Add up all the numbers you got in Step 2 to get the answer.

Following the instructions above, your math should look like this:

10 x 1 = 10

10 x 16 = 160

1 x 256 = 256

10 + 160 + 256 = 426

Thus, we got the following answer:

1AA = 426

User Vashum
by
6.1k points