134k views
2 votes
We combine the three binary bits 1, 0, and 1 to form 101 in order to represent the number 5. What does the leftmost 1 in 101 mean? What is there 1 of?

User Nik Graf
by
5.1k points

1 Answer

3 votes

Answer:

  • The leftmost 1 in 101 gives the 4.
  • 1 in 101 (using binary system) gives the bits that must be counted to make a decimal number.

Step-by-step explanation:

While working on binary system, we represent the decimal digits (0-9) by using only two digits 0's and 1's. They are written by dividing the decimal digit by 2 and then recording the remainder bits in reverse order.

As given in the question 5 is represented in binary as 101.

Now converting binary to decimal:

  • The bits of binary number are multiplied by increasing powers of 2 (starting from the right) and added to get decimal value.
  • So the binary number 101 will be interpreted as:


=1*2^2+ 0*2^1 + 1*2^0\\= 1*4 + 0 + 1\\= 4+1\\=5

  • So the leftmost 1 will show the presence of 4.
  • 1 in the number 101 shows which bits will be weighted to give the required value.

i hope it will help you!

User Navnish Bhardwaj
by
5.1k points