3.0k views
0 votes
Convert the following numbers to binary numbers: 5 , 6 , 7 , 8 , 9 .​

User Lannyboy
by
3.6k points

2 Answers

0 votes

Answer:

log 5,6,7,8,9 is the binary number according to the computer

User Okku
by
4.1k points
2 votes

Answer:

Divide by the base 2 to get the digits from the remainders:

For 5

Division by 2 Quotient Remainder(digit)

(5)/2 2 1

(2)/2 1 0

(1)/2 0 1

= (101)_2

For 6

Division by 2 Quotient Remainder(digit)

(6)/2 3 0

(3)/2 1 1

(1)/2 0 2

= (110)_2

For 7

Division by 2 Quotient Remainder(digit)

(7)/2 3 1

(3)/2 1 1

(1)/2 0 1

= (111)_2

For 8

Division by 2 Quotient Remainder(digit)

(8)/2 4 0

(4)/2 2 0

(2)/2 1 0

(1)/2 0 1

= (1000)_2

For 9

Division by 2 Quotient Remainder(digit)

(9)/2 4 1

(4)/2 2 0

(2)/2 1 0

(1)/2 0 1

= (1001)_2

Step-by-step explanation:

User Marwan
by
5.0k points