how to solve any number to decimal (100011)
Answers
Step-by-step explanation:
Step 1: Write down the binary number:
100011
Step 2: Multiply each digit of the binary number by the corresponding power of two:
1x25 + 0x24 + 0x23 + 0x22 + 1x21 + 1x20
Step 3: Solve the powers:
1x32 + 0x16 + 0x8 + 0x4 + 1x2 + 1x1 = 32 + 0 + 0 + 0 + 2 + 1
Step 4: Add up the numbers written above:
32 + 0 + 0 + 0 + 2 + 1 = 35. This is the decimal equivalent of the binary number 100011.
The answer is 35
Step-by-step explanation:
QUESTION -
how to solve any number to decimal (100011)
METHOD TO CONVERT -
To convert any binary number into decimal number, we have to multiply by 2 to each digit and place the index starting from zero from right side, after doing that, we have to calculate the expression and after that we can get the actual result.
SOLUTION -
(100011) INTO BASE 10
THEN,
100011
1x2^5 + 0x2⁴ + 0x2³ + 0x2² + 1x2¹ + 1x2^0
32 + 0 + 0 + 0 + 2 + 1
(35 ) decimal system
ADDITIONAL+
- To convert binary to decimal = multiply by 2
- To convert decimal to binary °= divide by 2