Let's start from the point where we've left in the previous slide. I previously said that Octal and Hexadecimal are useful to represent very large number, when binary number system fails to represent those in an efficient way. First we will discuss about Octal Number System. Octal Number System I have already given you the advantage of octal number system. Now let's look, what the octal number system actually is?. Octal means 8 (just like binary means 2 and decimal means 10). It means that in octal number system we have 8 distinct value i.e. 0,1,2,3,4,5,6,7. Ok, now we know advantage of octal system and what distinct values it contains. Now, let's see how we utilize that advantage which it has over the binary number system. Octal and Binary Comparison. Converting Binary to Octal number : You can clearly see that where we require 3 bits in binary form we can represent that number easily in 1 bit of octal form. Now you might be thinking that if the number of bits is grea...