Computer Science: Number Systems and Data Representation

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/27

flashcard set

Earn XP

Description and Tags

This set of flashcards covers vocabulary from Lecture 1.1 through 1.7, including binary and hexadecimal number systems, computer arithmetic, negative number representation, data units, multimedia representation, and compression techniques.

Last updated 5:44 PM on 5/27/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

28 Terms

1
New cards

Binary System

A base 22 number system that represents data using two digits, 00 (off) and 11 (on), which correspond to the state of tiny switches in a computer.

2
New cards

Denary System

A base 1010 number system that uses the digits 0,1,2,3,4,5,6,7,8,90, 1, 2, 3, 4, 5, 6, 7, 8, 9 to represent values.

3
New cards

Hexadecimal System

A base 1616 number system that uses 1616 digits (00 to 99 and AA to FF) to represent values, where one hex digit is equivalent to four binary digits.

4
New cards

Bit

The basic unit of all computing memory storage, which can be either a 11 or a 00.

5
New cards

Byte

The smallest unit of memory in a computer, consisting of 88 bits.

6
New cards

Nibble

A unit of data storage that consists of 44 bits.

7
New cards

Overflow Error

An error that occurs when a calculation produces a result that is too large to be stored in the available number of bits, such as an 8-bit register generating a 9th bit.

8
New cards

Binary Shifting

A process used by a CPU to perform multiplication (shifting bits left) and division (shifting bits right).

9
New cards

Two's Complement

A method for representing negative numbers in binary where the leftmost bit is treated as a sign bit (11 for negative, 00 for positive).

10
New cards

Kibibyte (KiB)

A unit of data measurement equal to 2102^{10} or 10241024 bytes.

11
New cards

Mebibyte (MiB)

A unit of data measurement equal to 2202^{20} or 10485761048576 bytes.

12
New cards

MAC Address

A unique identifier assigned to a device on a network, linked to the Network Interface Card (NIC) within the device.

13
New cards

IP Address

A unique identifier assigned to every device on a network; examples include IPv4 (a 3232-bit number) and IPv6 (a 128128-bit number).

14
New cards

Character Set

A list of characters defined by computer hardware and software that allows the computer to understand human characters, such as letters and punctuation.

15
New cards

ASCII

A character set that uses 77 bits to represent 128128 different characters including English letters, digits, and punctuation marks.

16
New cards

Unicode

A character encoding standard that uses 1616 bits to support over 6500065000 characters, covering virtually all languages, emojis, and symbols worldwide.

17
New cards

Digital Sample

A digital recording of an analog sound wave created by measuring the amplitude at regular intervals.

18
New cards

Sampling Resolution

The number of bits used to represent the amplitude of sound in a digital recording, also known as bit depth.

19
New cards

Sample Rate

The number of sound samples taken per second, measured in Hertz (HzHz).

20
New cards

Bitmap Image

An image consisting of a grid of pixels where each pixel is stored as a sequence of binary numbers.

21
New cards

Pixel

The individual grid elements arranged in two dimensions that make up an image.

22
New cards

Colour Depth

The number of bits used to represent each colour in an image; for example, a 2424-bit depth allows for over 1616 million colours.

23
New cards

Image Resolution

The total number of pixels that make up a single image.

24
New cards

Lossy Compression

A file compression algorithm that reduces size by permanently eliminating unnecessary data, meaning the original cannot be reconstructed.

25
New cards

Lossless Compression

A compression method where no original detail is lost, allowing the original uncompressed file to be perfectly reconstructed.

26
New cards

MPEG-3 (MP3)

A lossy compression technology that reduces music file sizes by about 90%90\% by removing sounds outside human hearing range and using perceptual music shaping.

27
New cards

JPEG

A lossy compression algorithm used for bitmap images that eliminates colour shades the human eye cannot easily notice.

28
New cards

Run-Length Encoding (RLE)

A lossless compression method that encodes strings of adjacent, identical data into two values: the count of identical items and the data item itself.