NIMCET 2012 — Computer PYQ
NIMCET | Computer | 2012The octal equivalent of binary number 111010 is
Choose the correct answer:
- A.
81
- B.
72
(Correct Answer) - C.
71
- D.
None
72
Explanation
The correct answer is (b) 72.
Step 1: Group the binary bits
To convert binary to octal, we group the bits into sets of three starting from the right (LSB).
Step 2: Convert each group to its decimal equivalent
We use the positional weights 22,21,20 for each 3-bit group:
-
First group (Right): (010)2
0×22+1×21+0×20=0+2+0=2 -
Second group (Left): (111)2
1×22+1×21+1×20=4+2+1=7
Step 3: Combine the results
Combining the digits 7 and 2 gives us the octal value.
Explanation
The correct answer is (b) 72.
Step 1: Group the binary bits
To convert binary to octal, we group the bits into sets of three starting from the right (LSB).
Step 2: Convert each group to its decimal equivalent
We use the positional weights 22,21,20 for each 3-bit group:
-
First group (Right): (010)2
0×22+1×21+0×20=0+2+0=2 -
Second group (Left): (111)2
1×22+1×21+1×20=4+2+1=7
Step 3: Combine the results
Combining the digits 7 and 2 gives us the octal value.