+1 vote
in Class 11 by kratos

Explain octal and hexadecimal number.

1 Answer

+5 votes
by kratos
 
Best answer

Octal (base 8) was previously a popular choice for representing digital circuit numbers in a form that is more compact than binary. Octal is sometimes abbreviated as oct. Octal counting goes as :

0,1, 2, 3,4, 5, 6, 7,10,11,12,13,14,15,16,17,20, 21 and so on.

Hexadecimal (base 16) is currently the most popular choice for representing digital circuit numbers in a form that is more compact than binary. Hexadecimal numbers are sometimes represented by preceding the value with ‘Ox’, as in 0x1 B84. Hexadecimal is sometimes abbreviated as hex. Hexadecimal counting goes :

0,1,2, 3,4,5, 6, 7, 8,9, A, B, C, D, E, F, and so on.

...