Question 11. Convert Decimal 289 to Hexadecimal
Answer: 121
- Divide 289 by 16. The quotient is 18 and the remainder is 1.
- 18 in hexadecimal is represented as 12.
- Combine quotient and remainder: 121.
Question 12. Convert Hexadecimal 1F5 to Decimal
Answer: 501
- 1F5 in hexadecimal means (1 * 16^2) + (15 * 16^1) + (5 * 16^0).
- 1 * 256 = 256, 15 * 16 = 240, and 5 * 1 = 5.
- 256 + 240 + 5 = 501.
Question 13. Convert Decimal 450 to Hexadecimal
Answer: 1C2
- Divide 450 by 16. The quotient is 28 and the remainder is 2.
- 28 in hexadecimal is represented as 1C.
- Combine quotient and remainder: 1C2.
Question 14. Convert Hexadecimal 26F to Decimal
Answer: 623
- 26F in hexadecimal means (2 * 16^2) + (6 * 16^1) + (15 * 16^0).
- 2 * 256 = 512, 6 * 16 = 96, and 15 * 1 = 15.
- 512 + 96 + 15 = 623.
Question 15. Convert Decimal 305 to Hexadecimal
Answer: 131
- Divide 305 by 16. The quotient is 19 and the remainder is 1.
- 19 in hexadecimal is represented as 13.
- Combine quotient and remainder: 131.
Question 16. Convert Hexadecimal 2B8 to Decimal
Answer: 696
- 2B8 in hexadecimal means (2 * 16^2) + (11 * 16^1) + (8 * 16^0).
- 2 * 256 = 512, 11 * 16 = 176, and 8 * 1 = 8.
- 512 + 176 + 8 = 696.
Question 17. Convert Decimal 543 to Hexadecimal
Answer: 21F
- Divide 543 by 16. The quotient is 33 and the remainder is 15.
- 33 in hexadecimal is represented as 21 and 15 as F.
- Combine quotient and remainder: 21F.
Question 18. Convert Hexadecimal 2FA to Decimal
Answer: 762
- 2FA in hexadecimal means (2 * 16^2) + (15 * 16^1) + (10 * 16^0).
- 2 * 256 = 512, 15 * 16 = 240, and 10 * 1 = 10.
- 512 + 240 + 10 = 762.
Question 19. Convert Decimal 600 to Hexadecimal
Answer: 258
- Divide 600 by 16. The quotient is 37 and the remainder is 8.
- 37 in hexadecimal is represented as 25.
- Combine quotient and remainder: 258.
Question 20. Convert Hexadecimal 311 to Decimal
Answer: 785
- 311 in hexadecimal means (3 * 16^2) + (1 * 16^1) + (1 * 16^0).
- 3 * 256 = 768, 1 * 16 = 16, and 1 * 1 = 1.
- 768 + 16 + 1 = 785.