convert demical to binary number sistem
Attachments:
Answers
Answered by
0
Answer:
Write down the number.
Divide it by 2 and note the remainder.
Divide the quotient obtained by 2 and note the remainder.
Repeat the same process till we get 0 as the quotient.
Write the values of all the remainders starting from the bottom to the top.
Answered by
0
Step-by-step explanation:
Step 1: Divide (254)10 successively by 2 until the quotient is 0:
254/2 = 127, remainder is 0
127/2 = 63, remainder is 1
63/2 = 31, remainder is 1
31/2 = 15, remainder is 1
15/2 = 7, remainder is 1
7/2 = 3, remainder is 1
3/2 = 1, remainder is 1
1/2 = 0, remainder is 1
Step 2: Read from the bottom (MSB) to top (LSB) as 11111110.
So, 11111110 is the binary equivalent of decimal number 254 (Answer).
Similar questions