A) Convert the following number into Binary format.
1) 112
Answers
Answered by
0
Answer:
1110000
Explanation:
divide 112 by 2 => rem is 0, quotient is 56
divide 56 by 2 => rem is 0, quotient is 28
divide 28 by 2 => rem is 0, quotient is 14
divide 14 by 2 => rem is 0, quotient is 7
divide 7 by 2 => rem is 1, quotient is 3
divide 3 by 2 => rem is 1, quotient is 1
so the answer is 1110000
Take the last quotient value and remainders from bottom to top
Similar questions