AP Computer Science Principles Vocabulary

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/103

flashcard set

Earn XP

Description and Tags

Study for the AP Exam

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

104 Terms

1
New cards

Computing Innovation

Includes a program as an integral part of its function, can be physical, non-physical software, or non-physical concepts.

2
New cards

Collaboration

Includes diverse perspectives which helps avoid bias.

3
New cards

Strong Password

Easy for a user to remember but difficult for someone else to guess.

4
New cards

Algorithm

A finite set of instructions that accomplishes a specific task.

5
New cards

Abstraction

The process of reducing complexity by focusing on the main idea and hiding irrelevant details.

6
New cards

Sequencing

The application of each step of an algorithm in the given order.

7
New cards

Selection

Determines which parts of an algorithm are executed based on a true or false condition.

8
New cards

Iteration

A repeating portion of an algorithm that has a specified number of repetitions or a condition.

9
New cards

Encryption

The process of encoding messages to keep them secret.

10
New cards

Decryption

Reverses encryption by reproducing the original plain text.

11
New cards

Programming Language

Provides the standards, syntax, statements, and instructions for writing software.

12
New cards

Problem

A general description of a task that can be solved algorithmically.

13
New cards

Instance of a Problem

A specific task needing to be solved with specific input.

14
New cards

Decision Problem

A problem with a yes/no answer.

15
New cards

Optimization Problem

A problem that finds the best solution among many.

16
New cards

Decidable Problem

A decision problem with an algorithm that produces a correct output for all inputs.

17
New cards

Undecidable Problem

A problem for which no algorithm can consistently give a correct yes/no answer.

18
New cards

Scalability

The capacity of a system to change in size and scale to meet new demands.

19
New cards

Efficiency

An estimation of the computational resources used by an algorithm.

20
New cards

Linear or Sequential Search

Search algorithms that check each element of a list in order.

21
New cards

Binary Search

A search algorithm that starts at the middle and removes half the data.

22
New cards

Heuristic

An approach that produces a solution not guaranteed to be optimal.

23
New cards

Algorithmic Bias

Bias embedded in algorithms and software development.

24
New cards

Pair Programming

A collaborative style where two programmers share roles in coding.

25
New cards

Program

A collection of statements that performs a specific task when run.

26
New cards

Code Segment

A part of a program that consists of a collection of program statements.

27
New cards

Behavior of a Program

How a program functions during execution.

28
New cards

Event

Associated with an action and supplies input data to a program.

29
New cards

Program Documentation

Written descriptions of a code segment, event, or program.

30
New cards

Comments

Program documentation intended for human readers that does not affect execution.

31
New cards

Iterative Development Process

A process that requires refinement based on feedback.

32
New cards

Incremental Development Process

A process that breaks problems into smaller pieces to ensure each works.

33
New cards

Program Inputs

Data sent to a computer for processing by a program.

34
New cards

Program Outputs

Data sent from a program to a device.

35
New cards

Variable

An abstraction that can hold a value within a program.

36
New cards

Conditional Statements

Code statements that affect flow by executing based on a Boolean expression.

37
New cards

Boolean Value

A data type representing true or false.

38
New cards

Nested Conditional Statements

Conditional statements within other conditional statements.

39
New cards

Iteration Statements

Code statements that repeat a set of statements until a condition is met.

40
New cards

Procedure

A named group of programming instructions possibly with parameters.

41
New cards

Parameters

Input variables of a procedure.

42
New cards

Arguments

Specify the values of parameters when a procedure is called.

43
New cards

Bit

The single unit of information in a computer, represented as 0 or 1.

44
New cards

Byte

8 bits.

45
New cards

Number Bases

The different digits or combinations used in counting systems.

46
New cards

Binary (Base 2)

Uses only the digits zero and one.

47
New cards

Decimal (Base 10)

Uses the digits 0-9.

48
New cards

Modulus Operator

Arithmetic operator that returns the remainder of a division operation.

49
New cards

Round-off Error

Error caused by fixed bits representing real numbers.

50
New cards

List

An ordered sequence of elements.

51
New cards

Element

An individual value in a list with a unique index.

52
New cards

Index

Method for referencing elements in a list using natural numbers.

53
New cards

Complete List Traversal

Accessing all elements in a list.

54
New cards

Partial List Traversal

Accessing only a portion of elements in a list.

55
New cards

Logic Error

A mistake in an algorithm or program that causes incorrect behavior.

56
New cards

Syntax Error

A mistake in a program where the rules of the programming language are not followed.

57
New cards

Run-Time Error

An error that occurs during the execution of a program.

58
New cards

Overflow Error

Error that occurs when there are not enough bits to represent a number.

59
New cards

String

A sequence of characters.

60
New cards

Substring

A part of an existing string.

61
New cards

String Concatenation

Joins two or more strings to create a new string.

62
New cards

Application Program Interface (API)

Specifications for how library procedures behave and can be used.

63
New cards

Data Abstraction

Separates abstract properties of a data type from its details.

64
New cards

Procedural Abstraction

Provides a name for a process to use without knowing how it works.

65
New cards

Modularity

Subdivision of a program into separate subprograms.

66
New cards

Analog Data

Values that change smoothly over time.

67
New cards

Sampling Technique

Technique used to measure values of an analog signal.

68
New cards

Data Compression

Method to reduce the size of transmitted or stored data.

69
New cards

Lossless Data Compression

Compression that allows complete reconstruction of original data.

70
New cards

Lossy Data Compression

Compression that allows reconstruction of an approximation of original data.

71
New cards

Creative Commons

A public copyright license enabling free distribution of copyrighted work.

72
New cards

Open Source

Programs made freely available for redistribution and modification.

73
New cards

Open Access

Online research output free of access restrictions.

74
New cards

Information

Collection of facts and patterns extracted from data.

75
New cards

Cleaning Data

Process that makes data uniform without changing its meaning.

76
New cards

Citizen Science

Scientific research conducted by non-scientists contributing data.

77
New cards

Crowdsourcing

Obtaining input from a large number of people via the Internet.

78
New cards

Simulation

Representation using varying values to reflect changes in a phenomenon.

79
New cards

Personally Identifiable Information (PII)

Information that identifies or describes an individual.

80
New cards

Metadata

Data about data.

81
New cards

Digital Divide

Differing access to computing devices based on characteristics.

82
New cards

Computing Device

A physical device that can run a program.

83
New cards

Computing System

A group of devices and programs working together.

84
New cards

Computer Network

Interconnected devices capable of data transmission.

85
New cards

Redundancy

Inclusion of extra components to mitigate failure.

86
New cards

Fault-Tolerant

A system that continues to function despite failures.

87
New cards

Protocol

Agreed-upon rules that specify system behavior.

88
New cards

Bandwidth

Maximum data that can be sent in a fixed time.

89
New cards

Routing

Finding a path from sender to receiver.

90
New cards

Path

A sequence of directly connected computing devices.

91
New cards

Data Streams

Streams containing chunks of data encapsulated in packets.

92
New cards

Packets

Data chunks containing data and metadata for routing.

93
New cards

World Wide Web

A system of linked pages, programs, and files.

94
New cards

HTTP

A protocol used by the World Wide Web.

95
New cards

Sequential Computing

Computational model with operations performed in order.

96
New cards

Distributed Computing

Computational model using multiple devices.

97
New cards

Parallel Computing

Computational model with multiple operations performed simultaneously.

98
New cards

Speedup of a Parallel Solution

Time taken for a task sequentially divided by time taken in parallel.

99
New cards

Public Key Encryption

Encryption using a public and a private key.

100
New cards

Multifactor Authentication

Access control method requiring multiple evidence pieces for authentication.