If computer understands only binary then why octal and hexadecimal are used | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

If computer understands only binary then why octal and hexadecimal are used

15th Oct 2018, 7:28 AM
Sai Kiran Borra
3 Answers
+ 5
Because they make more easy visualization and operations between data than binary
15th Oct 2018, 7:51 AM
KrOW
KrOW - avatar
+ 3
Hexadecimal and octaldecimal are for humans to read not machines. Binary can also get long really fast a 64 bit number has to obviously be represented with 64 binary digits meanwhile it takes a few hexadecimal characters.
15th Oct 2018, 8:04 AM
TurtleShell
TurtleShell - avatar
+ 2
Conversion between binary and hex is easy (easier than binary to decimal) because hex is a power of 2. Hex being very concise, with still a limited number of characters (ABCDEF) in addition to digits, it makes it much more readable and easy to memorize by humans than binary.
15th Oct 2018, 11:50 AM
ifl
ifl - avatar