My instructor stated that "an octal byte consists of 6 bits". I am having difficulty understanding why this is, as an octal digit consists of 3 binary bits. I also do not understand the significance of an octal byte being defined as '6 bits' as opposed to some other number

Can anyone explain why this is, if it is in fact true, or point me to a useful explanation?

Thanks

link|improve this question
3  
There is no official definition of a byte being 8 bits. That said, I've never heard of an "octal byte" before. – Oli Charlesworth Dec 11 '11 at 20:54
feedback

2 Answers

up vote 2 down vote accepted

This is all speculation and guesswork, since none of this is in any way standard terminology.

An 8-bit byte can be written as two digits of hexadecimals, because each digit expresses 4 bits. The largest such byte value is 0xFF.

By analogy, two digits of octals can express 2 × 3 = 6 bits. Its largest value is 077. So if you like you can call a pair of two octals an "octal byte", but only if you will also call an 8-bit byte a "hexadecimal byte".

In my personal opinion neither notion is helpful or useful, and you'd be best of just to say how many bits your byte has.

link|improve this answer
feedback

Like @Kerrek SB I'd have to guess the same.

Tell him an octal byte is two octal nibbles, that should sort him out.

Two hexadecimal digits is an 8 bit byte, so each four bits were called a nibble.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.