InterviewSolution
| 1. |
What Is Hexadecimal Number System? |
|
Answer» Hexadecimal number system USES base 16. The digits in this system RANGE from 0 to 15. By convention, the letters A through F is used to represent the hexadecimal digits corresponding to decimal values 10 through 15. Hexadecimal numbers in computing is used for abbreviating lengthy binary REPRESENTATIONS. Basically, hexadecimal number system represents a binary data by DIVIDING each byte in half and expressing the value of each half-byte. Hexadecimal number system uses base 16. The digits in this system range from 0 to 15. By convention, the letters A through F is used to represent the hexadecimal digits corresponding to decimal values 10 through 15. Hexadecimal numbers in computing is used for abbreviating lengthy binary representations. Basically, hexadecimal number system represents a binary data by dividing each byte in half and expressing the value of each half-byte. |
|