ap csp sem 1 vocab

0.0(0)
studied byStudied by 1 person
0.0(0)
call with kaiCall with Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/89

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 1:47 AM on 1/27/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

90 Terms

1
New cards

Innovation

A novel or improved idea, device, product or the development thereof.

2
New cards

Bit

A contraction of 'Binary Digit'; the single unit of information in a computer, typically represented as a 0 or 1.

3
New cards

Byte

8 bits.

4
New cards

Binary number

A base 2 number with two possible different digits.

5
New cards

Decimal number

A base 10 number with ten possible different digits.

6
New cards

Hexadecimal Number

A base 16 number with sixteen possible different digits.

7
New cards

Overflow Error

Error from attempting to represent a number that is too large.

8
New cards

Round-off Error

Error from attempting to represent a number that is too precise. The value is rounded.

9
New cards

ASCII

American Standard Code Information Interchange. ASCII is the universally recognized raw text format that any computer can understand.

10
New cards

Image

A type of data used for graphics or pictures.

11
New cards

Pixel

Short for 'picture element', it is the fundamental unit of a digital image, typically a tiny square or dot which contains a single point of color for a larger image.

12
New cards

Metadata

Data that describes other data. For example, a digital image may include metadata that describes the size of the image, the number of colors, or resolution.

13
New cards

Analog Data

Data with values that change continuously, or smoothly, over time. Some examples of analog data include music, colors of a painting, or position of a sprinter during a race.

14
New cards

Digital Data

Data that changes discreetly through a finite set of possible values.

15
New cards

Sampling

A process for creating a digital representation of analog data by measuring the analog data at regular intervals called samples.

16
New cards

Abstraction

A feature used to hide background details or any unnecessary implementation about the data so that users only see the required information.

17
New cards

RGB

The color model that uses varying intensities of (R)ed, (G)reen and (B)lue light which are added together to produce a broad array of colors.

18
New cards

Lossless Compression

A process for reducing the number of bits needed to represent something without losing any information. This process is reversible.

19
New cards

Heuristic

A problem solving approach to find a satisfactory solution where finding an optimal or exact solution is impartial or impossible.

20
New cards

Lossy Compression

A process for reducing the number of bits needed to represent something in which some information is lost or thrown away. This process is not reversible.

21
New cards

Copyright

A type of intellectual property that protects the original works of authorship as soon as the author fixes the work in a tangible form of expression.

22
New cards

Creative Commons

(CC) is an internationally active non-profit organization that provides free licensing for creators to use when making their work available to the public.

23
New cards

Internet

A group of computers and servers that are connected to each other.

24
New cards

Computing Device

A machine that can run a program, including computers, tablets, servers, routers, and smart sensors.

25
New cards

Computing System

A group of computing devices and programs working together for a common purpose.

26
New cards

Computing Network

A group of interconnected computing devices capable of sending or receiving data.

27
New cards

Path

The series of connections between computing devices on a network starting with a sender and ending with a receiver.

28
New cards

Bandwidth

The maximum amount of data that can be sent in a fixed amount of time, usually measured in bits per second.

29
New cards

Latency

The time it takes a bit to travel from its sender to receiver.

30
New cards

Bit Rate

The number of bits that are conveyed or processed per unit of time (usually bits/second).

31
New cards

Protocol

An agreed-upon set of rules that specify the behavior of some system.

32
New cards

IP Address

The unique number assigned to each device on the Internet.

33
New cards

Internet Protocol (IP)

A protocol for sending data across the Internet that assigns unique numbers (IP addresses) to each connected device.

34
New cards

URL

(Uniform Resource Locators) The location of a webpage or file on the Internet (ex www.code.org).

35
New cards

Router

A type of computer that forwards data across a network.

36
New cards

Redundancy

The inclusion of extra components so that a system can continue to work even if individual components fail, for example by having more than one path between any two connected devices in a network.

37
New cards

Fault Tolerant

Can continue to function even in the event of individual component failures. This is important because elements of complex systems like a computer network fail at unexpected times, often in groups.

38
New cards

Datastream

Information passed through the internet in packets.

39
New cards

Packet

A chunk of data sent over a network. Larger messages are divided into packets that may arrive at the destination in order, out-of-order, or not at all.

40
New cards

Packet Metadata

Data added to packets to help route them through the network and reassemble the original message.

41
New cards

Transmission Control Protocol (TCP)

A protocol for sending packets that does error-checking to ensure all packets are received and properly ordered.

42
New cards

User Datagram Protocol (UDP)

A protocol for sending packets quickly with minimal error-checking and no resending of dropped packets.

43
New cards

IETF

Internet Engineering Task Force - develops and promotes internet standards and protocols, in particular the standards that comprise the Internet protocol suite (TCP/IP).

44
New cards

Scalability

The capacity for the system to change in size and scale to meet new demands.

45
New cards

World Wide Web

A system of linked pages, programs, and files.

46
New cards

The Domain Name System (DNS)

The system responsible for translating domain names like example.com into IP addresses.

47
New cards

Hypertext Transfer Protocol (HTTP)

A protocol for computers to request and share the pages that make up the world wide web on the Internet.

48
New cards

Net Neutrality

The principle that all Internet traffic should be treated equally by Internet Service Providers (ISPS).

49
New cards

Digital Divide

Refers to the gap between those who have access to the Internet and those who do not, usually due to economic situation, social issues or location of Internet facilities.

50
New cards

Internet Censorship

The control or suppression of what can be accessed, published, or viewed on the Internet enacted by regulators.

51
New cards

User Interface

The inputs and outputs that allow a user to interact with a piece of software.

52
New cards

Input

Data that are sent to a computer for processing by a program.

53
New cards

Output

Any data that are sent from a program to a device.

54
New cards

Code

To write programming instructions for a computer.

55
New cards

Program Statement

A command or instruction. Sometimes also referred to as a code statement.

56
New cards

Program

A collection of program statements. Programs run (or 'execute') one command at a time.

57
New cards

Sequential Programming

Program statements run in order, from top to bottom.

58
New cards

Event Driven Programming

Some program statements run when triggered by an event, like a mouse click or a key press.

59
New cards

Debugging

The process of finding and fixing problems in code.

60
New cards

Documentation

A written description of how a command or piece of code works or was developed.

61
New cards

Comment

Form of program documentation written into the program to be read by people and which do not affect how a program runs.

62
New cards

Pair Programming

A collaborative programming style in which two programmers switch between the roles of writing code and tracking or planning high level progress.

63
New cards

Expression

A combination of operators and values that evaluates to a single value.

64
New cards

Variable

Holds one value at a time.

65
New cards

Assignment Operator

Allows a program to change the value represented by a variable.

66
New cards

Conditionals

Statements that run only under certain conditions.

67
New cards

Boolean Value

A data type that is either true or false.

68
New cards

Boolean Expression

An expression that evaluates to True or False.

69
New cards

Comparison Operators

<, >, <=, >=, ==, != indicate a Boolean expression.

70
New cards

Logical Operators

&&, ||, != (AND, OR, NOT) are often used in conditional for comparison.

71
New cards

String

Any sequence of characters between quotation marks (ex. 'hello', '42').

72
New cards

Concatenate

Link together or join strings or variables.

73
New cards

If-Statement

The common programming structure that implements 'conditional statements'.

74
New cards

Selection

A generic term for a type of programming statement (usually an if-statement) that uses a Boolean condition to determine, or select, whether or not to run a certain block of statements.

75
New cards

MOD

(modulo) is the remainder that is left after a number is divided by another number.

76
New cards

Function

A named group of programming instructions. Also referred to as a 'procedure'.

77
New cards

Function Call

A command that executes the code within a function.

78
New cards

Global Variable

Permanent - can be used anywhere in program.

79
New cards

Local Variable

Temporary - can only be used in the part of the code where it was created.

80
New cards

List

An ordered collection of elements.

81
New cards

Element

An individual value in a list that is assigned a unique index.

82
New cards

Index

A common method for referencing the elements of a list or strings using numbers.

83
New cards

While Loop

Uses a Boolean condition to repeatedly run a block of code.

84
New cards

For Loop

Condenses the parts of a while loop into a shorter statement.

85
New cards

Iteration

A repetitive portion of an algorithm which represents a specified number of times or until a given condition is met.

86
New cards

Infinite Loop

A loop that never stops running because a specified condition is never met.

87
New cards

Algorithm

A precise set of instructions for processes that can be executed by a computer.

88
New cards

Traversal

Traveling (or traversing) through every element of a list one element at a time.

89
New cards

Filter

Create a subset of elements from an original list.

90
New cards

Reduce

Reduce a list down to a single element, such as the smallest number in a list.