Binary Basics

Binary Basics

10th Grade

16 Qs

quiz-placeholder

Similar activities

Chapter 2: Binary Values & Numbering Systems

Chapter 2: Binary Values & Numbering Systems

KG - 12th Grade

20 Qs

2.1 Algorithms

2.1 Algorithms

10th - 12th Grade

20 Qs

Digital Information

Digital Information

10th - 12th Grade

17 Qs

AS Computing: Data Structures

AS Computing: Data Structures

10th Grade - University

15 Qs

Binary Basics

Binary Basics

7th - 11th Grade

12 Qs

1.2.4 Data Storage - number bases conversions & calculations

1.2.4 Data Storage - number bases conversions & calculations

9th - 11th Grade

20 Qs

Binary Logical and Arithmetic Shifts

Binary Logical and Arithmetic Shifts

8th - 10th Grade

15 Qs

Search & Sort Algorithms

Search & Sort Algorithms

7th - 11th Grade

18 Qs

Binary Basics

Binary Basics

Assessment

Quiz

Computers

10th Grade

Medium

Created by

Sergio Herrera

Used 16+ times

FREE Resource

16 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

What is the value of 00100101?

32

33

46

37

Answer explanation

The binary number 00100101 converts to decimal as follows: 0*2^7 + 0*2^6 + 1*2^5 + 0*2^4 + 0*2^3 + 1*2^2 + 0*2^1 + 1*2^0 = 0 + 0 + 32 + 0 + 0 + 4 + 0 + 1 = 37.

2.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

What is the value of 11111010?

254

246

220

250

Answer explanation

The binary number 11111010 converts to decimal as follows: 1*2^7 + 1*2^6 + 1*2^5 + 1*2^4 + 1*2^3 + 0*2^2 + 1*2^1 + 0*2^0 = 128 + 64 + 32 + 16 + 8 + 0 + 2 + 0 = 250.

3.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

What is the value of 00001101?

22

13

19

27

Answer explanation

The value 00001101 is a binary number. To convert it to decimal, calculate: (0*2^7) + (0*2^6) + (0*2^5) + (0*2^4) + (1*2^3) + (1*2^2) + (0*2^1) + (1*2^0) = 0 + 0 + 0 + 0 + 8 + 4 + 0 + 1 = 13.

4.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

What is the value of 10011001?

229

199

153

187

Answer explanation

The binary number 10011001 converts to decimal as follows: 1*2^7 + 0*2^6 + 0*2^5 + 1*2^4 + 1*2^3 + 0*2^2 + 0*2^1 + 1*2^0 = 128 + 0 + 0 + 16 + 8 + 0 + 0 + 1 = 153.

5.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

What is 3 in binary? 

00000001

00000100

00000011

00000101

Answer explanation

The binary representation of the decimal number 3 is 11. In an 8-bit format, this is written as 00000011, which matches the correct answer choice.

6.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

What is 192 in binary?

10001100

11001001

11000000

11010010

Answer explanation

To convert 192 to binary, divide by 2 repeatedly. 192 in binary is 11000000, which corresponds to 128 + 64 = 192. The other options do not represent 192.

7.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

What is decimal 16 in binary?

00001100

00001101

00011100

00010000

Answer explanation

Decimal 16 converts to binary as follows: 16 in binary is 10000. When padded to 8 bits, it becomes 00010000. Thus, the correct answer is 00010000.

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?