85.2k views
3 votes
Please help, I have no clue how to do this. It’s a question from my fundamentals of computing class

Please help, I have no clue how to do this. It’s a question from my fundamentals of-example-1

2 Answers

4 votes

To help us solve this problem, I've created a simple python program.

print(int("110101", 2))

The program prints 53 to the console.

If you search python ide online and paste that code into the ide and then replace the binary in between the quotes, you can find the value of any binary number you want.

User Dymmeh
by
5.0k points
5 votes

Answer:

110101 = 53

Hope this helps :)

User Kentaromiura
by
4.8k points