Explanation
The correct option is (b) 1374.
Detailed Solution
To convert a number from Hexadecimal (Base-16) to Octal (Base-8), the easiest and most efficient method is to first convert the hexadecimal number into Binary (Base-2), and then group those binary digits into sets of three to get the octal equivalent.
Step 1: Convert Hexadecimal to Binary
Each hexadecimal digit corresponds to a 4-bit binary number. Let's break down 3DC16:
Combining these gives the complete binary representation:
3DC16=0011110111002
Step 2: Convert Binary to Octal
To convert the binary number into octal, group the bits into sets of three, starting from right to left (Least Significant Bit to Most Significant Bit):
001111011100
Now, convert each 3-bit group into its equivalent decimal/octal digit:
Combining these digits together gives:
13748
Conclusion: Therefore, 3DC16=13748.