Computer Science, asked by bharamsavali, 9 months ago

(1010000)2 ÷ (1000)2 =(? )2 Binary division

Answers

Answered by Tamsssyyy
1

Answer:

is it python,then the program can be like this

Explanation:

a=1010000

b=(1010000)*2

c=1000

d=(1000)*2

e=b/d

print(e)

Similar questions