AP Computer Science Principles Unit 1: Digital Information Flashcards

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

1/49

flashcard set

Earn XP

Description and Tags

A set of 50 vocabulary flashcards covering key topics in digital information representation, binary arithmetic, data compression, sampling, abstraction layers, and intellectual property based on Unit 1 lecture notes and assessment questions.

Last updated 1:10 PM on 9/15/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

50 Terms

1
New cards

Bit

A contraction of 'Binary Digit', representing the smallest, most foundational unit of information in a computer as a 00 or 11.

2
New cards

Byte

A group of 88 bits used to store and process data in digital systems.

3
New cards

Abstraction

A simplified representation of something complex that hides low-level details by stacking layers of information.

4
New cards

Why Computers Use Binary

It is cheaper, easier, and much more reliable to build physical hardware components (like transistors) that only need to separate two distinct states (On/Off, High Voltage/Low Voltage).

5
New cards

Decimal System (Base-10)

A number system that uses 1010 digits (00 through 99).

6
New cards

Binary System (Base-2)

A number system that uses 22 digits (00 and 11), where each place value represents a power of 22.

7
New cards

Overflow Error

An error that occurs when a computer attempts to handle or calculate a number that is too large to be represented by the fixed number of allocated bits.

8
New cards

Round-off Error

An error that occurs when a computer attempts to represent a number that is too precise (like a repeating fraction), requiring it to truncate or round the value to fit its fixed bits.

9
New cards

ASCII

American Standard Code for Information Interchange; a universally recognized protocol converting numbers into raw text characters.

10
New cards

Digital Color (RGB)

A color model where image pixels are rendered using intensity values of Red, Green, and Blue.

11
New cards

Analog Data

Information that changes smoothly and continuously over time, such as sound waves, a standard thermometer, or a vinyl record.

12
New cards

Digital Data

Information broken down into discrete, finite values, typically represented as 11s and 00s.

13
New cards

Sampling

The process of converting analog data into digital data by measuring the analog signal at regular intervals and converting those measurements into numbers.

14
New cards

Lossless Compression

A data compression method that reduces file size without losing any original data, making the process fully reversible.

15
New cards

Lossy Compression

A data compression method that greatly reduces file size by permanently discarding less important data, making the process irreversible.

16
New cards

Intellectual Property

Legal rights that protect digital creations and original works.

17
New cards

Creative Commons

A specific type of public copyright license that lets creators clearly tell the public how they are allowed to share, remix, or reuse their copyrighted work.

18
New cards

Bit Reduction in Compression

Lossy compression algorithms are typically better than lossless compression algorithms at reducing the number of bits needed to represent a piece of data.

19
New cards

Reversibility of Lossless Compression

A property of lossless compression that guarantees perfect reconstruction of the original data upon decompression.

20
New cards

Appropriate Use of Lossy Compression

Ideal for applications needing quick transmission of media files (such as low-quality photos) where smaller data sizes are prioritized over exact detail.

21
New cards

Copyright Ownership of Unlicensed Work

The original creator retains ownership of a work if they did not license it, even if another person copies it and posts it online under a Creative Commons license.

22
New cards

Online Content Citation and Legal Consequences

Using images posted online by another student without permission or citation is an illegal practice most likely to lead to legal consequences.

23
New cards

Open Source Software Modification

The act of altering software distributed under an open source model, which is permissible and unlikely to lead to legal consequences.

24
New cards

Open Access Research

Research publications and materials made freely available for public use without requiring users to acquire individual licenses.

25
New cards

Effect of Image Compression on Bit Count

Compressing an image file decreases the total number of bits required to represent that image.

26
New cards

Computing Devices Representation of Data

The standard method by which computing devices represent all data using bits, where each bit is either a 00 or a 11.

27
New cards

Abstractions in Computing

Common higher-level data types represented by computing devices, including numbers, characters, and color.

28
New cards

Role of Abstraction in Managing Complexity

Abstraction helps represent complex information by hiding low-level implementation details rather than exposing them.

29
New cards

Context-Dependent Sequences of Bits

The concept that the exact same sequence of binary bits may represent different types of information depending entirely on the context.

30
New cards

Fixed Bit Limits on Number Representation

Because computers allocate a fixed number of bits for numbers, values that exceed the maximum representable limit cause overflow errors.

31
New cards

Digital Representation of Analog Realities

A smartphone photo of a physical museum painting is a digital representation of an analog object.

32
New cards

4-Bit Binary Overflow Threshold

In a 4-bit binary system representing non-negative decimal numbers (00 to 1515), the smallest number for which an overflow error occurs is 1616.

33
New cards

Binary 1001 to Decimal Conversion

The binary value 100121001_2 converts to the decimal value 99.

34
New cards

Decimal 20 to Binary Conversion

The decimal value 2020 converts to the 5-bit binary value 10100210100_2.

35
New cards

Comparison of Binary Values

Comparing 8-bit numbers shows that 11000000211000000_2 (192192 in decimal) is larger than 01111111201111111_2, 00000001200000001_2, and 10111111210111111_2.

36
New cards

Total Numbers in an 8-Bit Binary System

An 8-bit binary system can represent a total of 28=2562^8 = 256 distinct numbers.

37
New cards

Range of Values in an 8-Bit Binary System

An 8-bit binary system representing non-negative integers covers decimal values ranging from 00 to 255255.

38
New cards

.zip File Format

A common file format used as an example of lossless compression for text and files.

39
New cards

.jpg File Format

A common image file format used as an example of lossy compression.

40
New cards

.mp3 File Format

A common audio file format used as an example of lossy compression.

41
New cards

.mp4 File Format

A common video file format used as an example of lossy compression.

42
New cards

Hardware States in Binary Hardware

The physical states used by computer hardware (such as transistors) to represent binary values: On/Off or High Voltage/Low Voltage.

43
New cards

Binary Place Values (8-Bit)

The positional values in an 8-bit binary number corresponding to powers of 2: 128,64,32,16,8,4,2,1128, 64, 32, 16, 8, 4, 2, 1.

44
New cards

Digital Information Abstraction Stack

The multi-layered structure of digital information: Light/Electricity \rightarrow Bits \rightarrow Numbers \rightarrow Text \rightarrow Images.

45
New cards

Pixel

An individual dot or picture element in a digital image, rendered using RGB color values.

46
New cards

Sound Waves as Analog Information

An example of analog data characterized by smooth and continuous changes over time.

47
New cards

Vinyl Record

An example of an analog media storage format that records continuous sound signals.

48
New cards

Standard Thermometer

An example of an analog measuring device that displays temperature as a continuous physical measurement.

49
New cards

Truncation in Binary Numbers

The act of cutting off digits in a fractional or precise number to fit a fixed bit allocation, resulting in round-off errors.

50
New cards

Public Copyright License

A standardized legal framework, such as Creative Commons, allowing content creators to grant public permissions to share and reuse their work.