Question
Download Solution PDFIf (L)m represents a number L in base-M number system, then identify the correct ascending order of the following numbers A-D when converted to decimal number system.
A. (11001.11)2
B. (123.2)4
C. (31.5)8
D. (19.6)16
Choose the correct answer from the options given below:
Answer (Detailed Solution Below)
Option 4 : D, C, A, B
Detailed Solution
Download Solution PDFThe correct answer is - D, C, A, B
Key Points
- Base-2 to Decimal Conversion
- (11001.11)2 = 1*24 + 1*23 + 0*22 + 0*21 + 1*20 + 1*2-1 + 1*2-2
- = 16 + 8 + 1 + 0.5 + 0.25 = 25.75
- Base-4 to Decimal Conversion
- (123.2)4 = 1*42 + 2*41 + 3*40 + 2*4-1
- = 16 + 8 + 3 + 0.5 = 27.5
- Base-8 to Decimal Conversion
- (31.5)8 = 3*81 + 1*80 + 5*8-1
- = 24 + 1 + 0.625 = 25.625
- Base-16 to Decimal Conversion
- (19.6)16 = 1*161 + 9*160 + 6*16-1
- = 16 + 9 + 0.375 = 25.375
Additional Information
- Understanding Number Systems
- Binary System (Base-2)
- Uses digits 0 and 1.
- Each digit represents an increasing power of 2.
- Quaternary System (Base-4)
- Uses digits 0, 1, 2, and 3.
- Each digit represents an increasing power of 4.
- Octal System (Base-8)
- Uses digits 0 to 7.
- Each digit represents an increasing power of 8.
- Hexadecimal System (Base-16)
- Uses digits 0 to 9 and letters A to F.
- Each digit represents an increasing power of 16.
- Binary System (Base-2)
- Conversion Techniques
- To convert from any base to decimal, multiply each digit by its base raised to the power of its position and sum the results.
- To convert from decimal to another base, repeatedly divide the decimal number by the new base and record the remainders.