What is the octal equivalent of the hexadecimal number 132A?

What is the octal equivalent of the hexadecimal number 132A? Correct Answer 11452

Concept:

Hexadecimal number: In this, value of the base is 16. Each digit is represented by 4-bit binary no.

Octal number: For octal number, value of base is 8. Each digit of an octal number is represented by 3-bit binary no.

Explanation:

Hexadecimal number = 132A

Binary representation for this number (each digit of a hexadecimal number is converted into 4 binary bits) 

So, 132A in binary is equivalent to 0001 0011 0010 1010

Now group this binary number into 3 bits starting from right to left. 

i.e. 0 001 001 100 101 010

Octal representation for this number is : 0 1 1 4 5 2

Related Questions

Which of the following format specifiers is used to print hexadecimal values and return value of output as Octal equivalent in C#?
Conversion of an octal number 1128 to hexadecimal number is
Conversion of an octal number 1438 to hexadecimal number is
Conversion of an octal number 1368 to hexadecimal number is