Digital Information & Number Systems Flashcards

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

1/30

flashcard set

Earn XP

Description and Tags

Flashcards for Digital Information and Number Systems

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

31 Terms

1
New cards

Digital Information

Computers operate using numbers and translate human-relevant data into numerical form.

2
New cards

Encoding

Turning meaningful data into numerical form so computers can work with it.

3
New cards

Binary Numbers

A number system that uses only 0s and 1s, the lowest level data storage for computers.

4
New cards

Data Abstraction

Simplifying complex data into manageable levels or layers.

5
New cards

Advantages of Digital Representation

Manipulating, analyzing, storing, and sending data.

6
New cards

Number System

A system specifying allowed digits and the meaning of each position in a number.

7
New cards

Decimal Number System

A number system with 10 digits (0-9).

8
New cards

Binary Number System

A number system with 2 digits (0 and 1).

9
New cards

Converting Binary to Decimal

Multiplying each digit by its place value and adding them up.

10
New cards

Bit

A binary digit, either 0 or 1, the fundamental unit of data in computers.

11
New cards

Importance of Simplicity in Hardware

Making things as simple as possible when storing and reading data.

12
New cards

Byte

8 bits, encoding a single character.

13
New cards

Binary Encoding

A mapping from binary sequences to actual data.

14
New cards

ASCII

American Standard Code for Information Interchange. A standard mapping between binary values and characters.

15
New cards

Pixel

The smallest unit of a digital image.

16
New cards

Hexadecimal Number System

A number system with 16 digits (0-9 and A-F).

17
New cards

RGB

Red, Green, Blue. Mixing these three lights at different intensities makes any color.

18
New cards

Data Compression

The process of encoding information using fewer bits than the original representation.

19
New cards

Saving Storage Space

Helps reduce the data footprint.

20
New cards

Speeding Up Transmission

Sending compressed data is faster because there are fewer bits to transmit.

21
New cards

Tradeoff: Storage vs Computation

Compression uses more computational power, which is cheap and fast. In return, we use less storage, which is expensive and slow.

22
New cards

Run Length Encoding (RLE)

Text compression good for text with many repeats.

23
New cards

Lossless Compression

No data is lost.

24
New cards

File Extensions and Compression

File extensions tell the computer which compression algorithm to use for decompression.

25
New cards

Lossy compression

Algorithms reduce file size by permanently removing some data.

26
New cards

Encryption

Scrambling readable data into an unreadable form using a key.

27
New cards

Decryption

Converting scrambled data back to its original form using the same or corresponding key.

28
New cards

Key

A unique random string (e.g., numbers and characters) required to encrypt/decrypt data.

29
New cards

Caesar Cipher (Ancient Example)

Encrypts alphabetic text by shifting letters by a fixed amount (the "key").

30
New cards

Symmetric Encryption

Same key is used for encryption and decryption.

31
New cards

Asymmetric Encryption (Public-Key Encryption)

Uses two keys: Public key (anyone can have it; used for encrypting) & Private key (kept secret; used for decrypting).