0
0
Intro to Computingfundamentals~20 mins

Bits and bytes explained in Intro to Computing - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Bits and Bytes Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
1:00remaining
Understanding the size of a byte

How many bits are there in one byte?

A8 bits
B4 bits
C16 bits
D1 bit
Attempts:
2 left
💡 Hint

Think about the smallest group of bits that computers use to represent a character.

trace
intermediate
1:30remaining
Tracing binary to decimal conversion

What decimal number does the 8-bit binary number 00010110 represent?

A26
B16
C22
D20
Attempts:
2 left
💡 Hint

Start from the rightmost bit and add powers of 2 where the bit is 1.

identification
advanced
1:00remaining
Identifying the smallest unit of data

Which of the following is the smallest unit of data in a computer?

ANibble
BByte
CKilobyte
DBit
Attempts:
2 left
💡 Hint

It can only be 0 or 1.

Comparison
advanced
1:30remaining
Comparing data sizes

Which data size is larger?

1 kilobyte (KB) or 1 megabit (Mb)?

ACannot compare because one is bytes and the other is bits
B1 Mb is larger than 1 KB
CThey are equal
D1 KB is larger than 1 Mb
Attempts:
2 left
💡 Hint

Remember: 1 byte = 8 bits, 1 KB = 1024 bytes, 1 Mb = 1,000,000 bits.

🚀 Application
expert
2:00remaining
Calculating storage for text

You want to store a text file with 500 characters. Each character uses 1 byte. How many bits of storage do you need?

A4000 bits
B8000 bits
C500 bits
D1000 bits
Attempts:
2 left
💡 Hint

Multiply the number of characters by bytes per character, then convert bytes to bits.