Respuesta :

Answer:

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

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

Explanation: