Steps:: 1. Decimal To Binary Conversion (With Fractional Part)
Steps:: 1. Decimal To Binary Conversion (With Fractional Part)
Steps:
12 ÷ 2 = 6, remainder = 0
6 ÷ 2 = 3, remainder = 0
3 ÷ 2 = 1, remainder = 1
1 ÷ 2 = 0, remainder = 1
Final result:
Steps:
Integer part: Convert by multiplying each binary digit by 2 raised to the power of its position.
Fractional part: Multiply each digit by 2 raised to the negative power of its position.
1. Integer part:
2. Fractional part:
Final result:
1100.011 (binary) = 12.375 (decimal)
Steps:
Fractional part: Multiply the fractional part by 8 and keep track of the integer parts.
19 ÷ 8 = 2, remainder = 3
2 ÷ 8 = 0, remainder = 2
Final result:
Steps:
Integer part: Convert by multiplying each octal digit by 8 raised to the power of its position.
Fractional part: Multiply each digit by 8 raised to the negative power of its position.
1. Integer part:
2. Fractional part:
Final result:
Fractional part: Multiply the fractional part by 16 and keep track of the integer parts.
9 ÷ 16 = 0, remainder = 9
Final result:
Steps:
Integer part: Convert by multiplying each hexadecimal digit by 16 raised to the power of its position.
Fractional part: Multiply each digit by 16 raised to the negative power of its position.
1. Integer part:
2. Fractional part:
Final result:
Steps:
Integer part: Group binary digits into groups of four and convert each group to hexadecimal.
Fractional part: Group binary digits into sets of four, and convert them into hexadecimal digits.
Example: Convert 101101.011 (binary) to hexadecimal.
Group as (0110)
(0110 = 6)
Final result:
Steps:
Integer part: Convert each hexadecimal digit to its 4bit binary equivalent.
Fractional part: Convert each hexadecimal digit to its 4bit binary equivalent.
(2 = 0010), (D = 1101)
(6 = 0110)
Final result: