Data Types and Representation
Data Compression
Binary/Data Representation
Binary Basics
Binary Logic
100

This is the smallest unit of data in computing, and it can have a value of 0 or 1

What is a bit?

100

This technique reduces file size while maintaining all original data.

What is lossless compression?

100

One byte is equal to this many bits.

What is 8?

100

This is the base number system that binary is built on.

What is base 2?

100

This logic operator outputs 1 only when both inputs are 1.

What is AND?

200

This binary prefix represents approximately one thousand bytes.

What is a kilobyte?

200

A compressed image file may lose detail and quality due to this type of compression.

What is lossy compression?

200

The process of converting characters to binary is known as this.

What is text encoding?


200

In binary, the number 1010 is equal to this value in decimal.

What is 10?

200

This is what occurs when a binary value exceeds the storage limit of a fixed number of bits.

What is overflow?

300

This is how text characters are represented in binary using a common encoding scheme.

What is ASCII (or Unicode)?

300

Compressing a video file helps reduce this aspect, making it easier to stream or send.

What is file size?
300

In an RGB image, each color channel is usually stored using this many bits.

What is 8 bits?

300

This binary number is equivalent to the decimal number 31.

What is 0001 1111?

300

In binary, adding 1 to 1111 (4 bits) causes this kind of event.

What is overflow (carry beyond 4 bits)?

400

This format is often used to store data in rows and columns, making it easy to analyze.

What is a table?

400

When compressing an image with large areas of solid color, this type of compression technique is particularly effective.

What is run length encoding?

400

The number of unique values that can be represented by 6 bits.

What is 64?

400

This is the decimal value of the 8-bit binary number 11001010.

What is 202?

400

This is the binary representation of the smallest positive integer that will cause overflow in an 8-bit binary system.

What is 256 (binary: 100000000)?

500

Representing color images digitally typically requires three channels corresponding to these components.

What are red, green, and blue (RGB)?

500

This is the trade-off made when choosing a higher compression ratio in lossy compression algorithms.

What is reduced quality or loss of fidelity?

500

A system with n bits can represent this many unique values.

What is 2values?

500

This is the result when you add the binary numbers 1011 and 1101.

What is 11000?

500

In binary arithmetic, this rule determines the carry in addition.

What is when the sum of two bits is greater than 1?