Data Representation – Key Vocabulary

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/34

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards covering key terms and concepts from the lecture on Data Representation, including number systems, binary arithmetic, storage units, character encoding, and error conditions.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

35 Terms

1
New cards

Denary (Decimal) Number System

Base-10 numbering system that uses the digits 0–9.

2
New cards

Binary Number System

Base-2 numbering system that uses only the digits 0 and 1.

3
New cards

Binary Place Value

Each bit’s value is a power of two (…128, 64, 32, 16, 8, 4, 2, 1).

4
New cards

Bit

The smallest unit of data; a single binary digit (0 or 1).

5
New cards

Nibble

A group of 4 bits (half a byte).

6
New cards

Byte

A group of 8 bits.

7
New cards

Kilobyte (kB)

Approx. 1 000 bytes using decimal prefixes (IEC: kibibyte ≈ 1 024 bytes).

8
New cards

Kibibyte (KiB)

1 024 bytes, the binary-prefix version of a kilobyte.

9
New cards

Megabyte (MB)

Approx. 1 000 000 bytes; binary equivalent is mebibyte (MiB ≈ 1 048 576 bytes).

10
New cards

Gigabyte (GB)

Approx. 1 000 000 000 bytes; binary equivalent is gibibyte (GiB ≈ 1 073 741 824 bytes).

11
New cards

Terabyte (TB)

Approx. 1 000 000 000 000 bytes; binary equivalent is tebibyte (TiB).

12
New cards

Binary-to-Denary Conversion

Sum the products of each bit and its power-of-two place value.

13
New cards

Denary-to-Binary Conversion

Repeated division by 2 (track remainders) or fill place-value columns with 1s and 0s.

14
New cards

Binary Addition

Add bits column-wise; 1+1=10, carrying the 1 to the next column.

15
New cards

Binary Subtraction

Subtract bits column-wise; borrow from higher place values when needed.

16
New cards

Overflow Error

Occurs when a calculation produces a value too large for the fixed number of bits (word size).

17
New cards

Word Size

The number of bits a CPU register can hold (e.g., 8-, 32-, or 64-bit).

18
New cards

Unsigned Binary Number

Binary value assumed to be non-negative; all bits represent magnitude.

19
New cards

Signed Binary Number

Binary value that may be positive or negative, indicated by a sign method (e.g., MSB).

20
New cards

Most Significant Bit (MSB)

Left-most bit in a binary number; often used as the sign bit in signed formats.

21
New cards

Sign and Magnitude

Signed format where MSB represents sign (0=+ , 1=-) and remaining bits give magnitude.

22
New cards

One’s Complement

Invert every bit (0→1, 1→0) to represent the negative of a binary number.

23
New cards

Two’s Complement

Invert all bits then add 1; standard method for signed integers in computers.

24
New cards

Hexadecimal Number System

Base-16 system using digits 0–9 and letters A–F.

25
New cards

Binary–Hex Conversion

Group binary digits in sets of four; map each quartet to one hex digit (and vice versa).

26
New cards

Hexadecimal-to-Denary Conversion

Sum each hex digit multiplied by its power-of-16 place value.

27
New cards

Denary-to-Hexadecimal Conversion

Repeatedly divide the denary number by 16; collect remainders as hex digits.

28
New cards

Binary Coded Decimal (BCD)

Encoding where each decimal digit is stored in its own 4-bit binary pattern.

29
New cards

Packed BCD

Stores two decimal digits per byte—one digit per nibble.

30
New cards

Unpacked BCD

Stores one decimal digit per byte; upper nibble is unused.

31
New cards

ASCII (American Standard Code for Information Interchange)

7-bit character code mapping 128 symbols (letters, digits, control codes).

32
New cards

Extended ASCII

8-bit superset of ASCII providing 256 code points for additional symbols.

33
New cards

Unicode

Universal character-encoding standard assigning a unique code point to over 128 000 characters.

34
New cards

Code Point

Numeric value assigned to a character in Unicode, written as U+ followed by hex digits.

35
New cards

Network Interface Card (NIC) Address

Unique 48-bit identifier (often displayed in hexadecimal) assigned to network hardware.