67.3k views
2 votes
Convert the following four unsigned binary numbers to decimal and show your work:

10111 10101 01010 111111 001111

2 Answers

4 votes

Answer:

23 ,21,10,63,13

Step-by-step explanation:

User Bruno Unna
by
4.5k points
6 votes

Answer:

23 ,21,10,63,13

Step-by-step explanation:

We have to convert binary to decimal

10111 corresponding decimal number is


1* 2^4+0* 2^3+1* 2^2+1* 2^1+1* 2^0=23

10101 corresponding decimal number is


1* 2^4+0* 2^3+1* 2^2+0* 2^1+1* 2^0==21

01010 corresponding decimal number is


0* 2^4+1* 2^3+0* 2^2+1* 2^1+0* 2^0=10

111111 corresponding decimal number is


1* 2^5+1* 2^4+1* 2^3+1* 2^2+1* 2^1+1* 2^0=63

001111 corresponding decimal number is


0* 2^5+0* 2^4+1* 2^3+1* 2^2+1* 2^1+1* 2^0=13

User Vaskort
by
4.8k points