Q1.Convert the decimal number 222 into binary number.
A) 11011101
B) 11011110
C) 10111110
D) 11010110
Q2.Convert the binary number 10101010 into decimal number.
A) 140
B) 150
C) 160
D) 170
technology57:
I have given multiple thanks to your single answer.
Answers
Answered by
3
Answer:
Answered by
3
Q1.Convert the decimal number 222 into binary number.
Divide 222 successively by 2 we get the quotient as 0
Write the remainder from bottom to top as 11011110.
______________________________________________
Q2.Convert the binary number 10101010 into decimal number.
Multiply each digit of the binary number by the corresponding power of two:
→ 1×2⁷ + 0×2⁶ + 1×2⁵ + 0×2⁴+ 1×2³+ 0×2² + 1×2¹+ 0×2⁰
→ 1×128 + 0×64 + 1×32 + 0×16 + 1×8 + 0×4 + 1×2 + 0×1
→ 128 + 0 + 32 + 0 + 8 + 0 + 2 + 0
→ 170
Similar questions