Binary to Decimal Conversion Quiz

Reviewed by Editorial Team
The ProProfs editorial team is comprised of experienced subject matter experts. They've collectively created over 10,000 quizzes and lessons, serving over 100 million users. Our team includes in-house content moderators and subject matter experts, as well as a global network of rigorously trained contributors. All adhere to our comprehensive editorial guidelines, ensuring the delivery of high-quality content.
Learn about Our Editorial Process
| By ProProfs AI
P
ProProfs AI
Community Contributor
Quizzes Created: 81 | Total Attempts: 817
| Questions: 15 | Updated: Apr 30, 2026
Please wait...
Question 1 / 15
🏆 Rank #--
0 %
0/100
Score 0/100

1. What is the decimal value of the binary number 1010?

Explanation

To convert the binary number 1010 to decimal, each digit represents a power of 2, starting from the right. In this case, 1×2^3 (8) + 0×2^2 (0) + 1×2^1 (2) + 0×2^0 (0) equals 8 + 0 + 2 + 0, which totals 10. Thus, the decimal value is 10.

Submit
Please wait...
About This Quiz
Binary To Decimal Conversion Quiz - Quiz

Test your understanding of binary to decimal conversion with this medium-difficulty quiz designed for grade 7 students. This Binary to Decimal Conversion Quiz covers the fundamentals of converting numbers from base 2 to base 10, including place values, powers of 2, and practical conversion techniques. Master these essential number system... see moreskills that form the foundation of computer science and mathematics. see less

2. Convert the binary number 1101 to decimal.

Explanation

To convert the binary number 1101 to decimal, each digit represents a power of 2, starting from the right. The calculation is: \(1 \times 2^3 + 1 \times 2^2 + 0 \times 2^1 + 1 \times 2^0\), which equals \(8 + 4 + 0 + 1 = 13\). Thus, 1101 in binary is 13 in decimal.

Submit

3. In binary, the rightmost digit represents 2 to the power of ____.

Explanation

In binary representation, each digit corresponds to a power of 2, starting from the rightmost digit. The rightmost digit, or least significant bit, represents \(2^0\), which equals 1. This foundational principle of binary numbering illustrates how values are assigned based on their position, with the rightmost position always representing the smallest power of 2.

Submit

4. What is 10011 in decimal?

Explanation

To convert the binary number 10011 to decimal, you multiply each digit by 2 raised to the power of its position, counting from right to left, starting at 0. This gives: \(1 \times 2^4 + 0 \times 2^3 + 0 \times 2^2 + 1 \times 2^1 + 1 \times 2^0 = 16 + 0 + 0 + 2 + 1 = 19\).

Submit

5. The binary number 11111 equals ____ in decimal.

Explanation

To convert the binary number 11111 to decimal, multiply each bit by 2 raised to the power of its position, starting from 0 on the right. This gives: \(1 \times 2^4 + 1 \times 2^3 + 1 \times 2^2 + 1 \times 2^1 + 1 \times 2^0 = 16 + 8 + 4 + 2 + 1 = 31\).

Submit

6. Convert 100110 to decimal.

Explanation

To convert the binary number 100110 to decimal, calculate its value by assigning powers of 2 to each digit from right to left. This gives: \(1 \times 2^5 + 0 \times 2^4 + 0 \times 2^3 + 1 \times 2^2 + 1 \times 2^1 + 0 \times 2^0 = 32 + 0 + 0 + 4 + 2 + 0 = 36\).

Submit

7. What is the decimal equivalent of binary 1001?

Explanation

To convert the binary number 1001 to decimal, each digit is multiplied by 2 raised to the power of its position from the right, starting at 0. Thus, 1*(2^3) + 0*(2^2) + 0*(2^1) + 1*(2^0) equals 8 + 0 + 0 + 1, which totals 9.

Submit

8. Binary 10000 equals ____ in decimal.

Explanation

Binary 10000 represents the number in base 2. Each digit corresponds to a power of 2, starting from the right: 0 (2^0), 0 (2^1), 0 (2^2), 0 (2^3), and 1 (2^4). Thus, 1 × 2^4 equals 16, making the decimal equivalent of binary 10000 equal to 16.

Submit

9. Convert 11010 to decimal.

Explanation

To convert the binary number 11010 to decimal, we calculate the value of each bit. Starting from the right, the bits represent 2^0, 2^1, 2^2, 2^3, and 2^4. Thus, 0×1 + 1×2 + 0×4 + 1×8 + 1×16 = 0 + 2 + 0 + 8 + 16 = 26.

Submit

10. What does binary 101101 equal in decimal?

Explanation

To convert the binary number 101101 to decimal, you calculate the value of each bit from right to left, starting at 0. This gives you: \(1 \times 2^5 + 0 \times 2^4 + 1 \times 2^3 + 1 \times 2^2 + 0 \times 2^1 + 1 \times 2^0\), which equals \(32 + 0 + 8 + 4 + 0 + 1 = 45\).

Submit

11. The binary number 1111 converts to ____ in decimal.

Explanation

To convert the binary number 1111 to decimal, calculate it using powers of 2. Starting from the right, each digit represents a power of 2: \(1 \times 2^3 + 1 \times 2^2 + 1 \times 2^1 + 1 \times 2^0\), which equals \(8 + 4 + 2 + 1 = 15\). Thus, 1111 in binary is 15 in decimal.

Submit

12. Convert 110011 to decimal.

Explanation

To convert the binary number 110011 to decimal, calculate the sum of the powers of 2 for each bit that is set to 1. Starting from the right, the calculation is: \(1 \times 2^0 + 1 \times 2^1 + 0 \times 2^2 + 0 \times 2^3 + 1 \times 2^4 + 1 \times 2^5\), which equals 51.

Submit

13. Binary 10101 equals ____ in decimal.

Submit

14. What is 111000 in decimal?

Submit

15. Convert binary 11001 to decimal.

Submit
×
Saved
Thank you for your feedback!
View My Results
Cancel
  • All
    All (15)
  • Unanswered
    Unanswered ()
  • Answered
    Answered ()
What is the decimal value of the binary number 1010?
Convert the binary number 1101 to decimal.
In binary, the rightmost digit represents 2 to the power of ____.
What is 10011 in decimal?
The binary number 11111 equals ____ in decimal.
Convert 100110 to decimal.
What is the decimal equivalent of binary 1001?
Binary 10000 equals ____ in decimal.
Convert 11010 to decimal.
What does binary 101101 equal in decimal?
The binary number 1111 converts to ____ in decimal.
Convert 110011 to decimal.
Binary 10101 equals ____ in decimal.
What is 111000 in decimal?
Convert binary 11001 to decimal.
play-Mute sad happy unanswered_answer up-hover down-hover success oval cancel Check box square blue
Alert!