AP Computer Science Principles vocab terms

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

1/93

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

94 Terms

1
New cards

program

a collection of program statements that performs a specific task when run by a computer

2
New cards

software

another term for a program

3
New cards

code segment

a collection of program statements that is part of a program

4
New cards

behavior

how a program functions during execution

5
New cards

program inputs

tactile, audio, visual, or text data sent to a computer for processing by a program

6
New cards

event

an action that supplies input data to a program

7
New cards

program outputs

any data sent from a program to a device

8
New cards

program documentation

a written description of the function of a code segment, event, procedure, or program and how it was developed

9
New cards

comments

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

10
New cards

logic error

a mistake in the algorithm or program that causes it to behave incorrectly or unexpectedly

11
New cards

syntax error

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

12
New cards

run-time error

a mistake in the program that occurs during the execution of a program

13
New cards

overflow error

an error that occurs when a computer attempts to handle a number that is outside of the defined range of values

14
New cards

testing

using defined inputs to ensure that an algorithm or program is producing the expected outcomes

15
New cards

bit

shorthand for binary digit

16
New cards

binary digit

either 0 or 1

17
New cards

byte

8 bits

18
New cards

abstraction

the process of reducing complexity by focusing on the main idea, hiding details irrelevant to the question at hand

19
New cards

sampling technique

way of closely approximating analog data to store it digitally

20
New cards

samples

values of an analog signal measured at regular intervals

21
New cards

data compression

reduces the size (number of bits) of transmitted or stored data

22
New cards

lossless

data compression algorithms that guarantee complete reconstruction of the original data

23
New cards

lossy

data compression algorithms that can significantly reduce the number of bits but only allow reconstruction of an approximation of the original data

24
New cards

information

the collection of facts and patterns extracted from data

25
New cards

metadata

data about data, for example the date creation or the file size

26
New cards

cleaning data

a process that makes data uniform without changing its meaning (e.g., replacing all equivalent abbreviations, spellings, and capitalizations with the same word)

27
New cards

variable

an abstraction inside a program that can hold a value

28
New cards

types

kinds of representable data, including numbers, Booleans, lists, and strings

29
New cards

list

an ordered sequence of elements

30
New cards

element

an individual value in a list that is assigned a unique index

31
New cards

index

a common method for referencing the elements in a list or string using natural numbers

32
New cards

string

an ordered sequence of characters

33
New cards

array

another term for list, depending on the programming language

34
New cards

algorithm

a finite set of instructions that accomplish a specific task

35
New cards

sequencing

the application of each step of an algorithm in the order in which the code statements are given

36
New cards

code statement

a part of program code that expresses an action to be carried out

37
New cards

expression

a part of program code that is evaluated to produce a single value, and can consist of a value, a variable, an operator, or a procedure call that returns a value

38
New cards

string concatenation

joins together two or more strings end-to-end to make a new string

39
New cards

substring

part of an existing string

40
New cards

Boolean value

either true or false

41
New cards

selection

determines which parts of an algorithm are executed based on a condition being true or false

42
New cards

iteration

a repeating portion of an algorithm

43
New cards

procedure

a named group of programming instructions that may have parameters and return values

44
New cards

method

another term for procedure, depending on the programming language

45
New cards

function

another term for procedure, in programming languages such as Python

46
New cards

parameters

input variables of a procedure

47
New cards

arguments

specify the values of the parameters when a procedure is called

48
New cards

modularity

the subdivision of a computer program into separate subprograms

49
New cards

simulation

a representation that uses varying sets of values to reflect the changing state of a phenomenon

50
New cards

problem

a general description of a task that can (or cannot) be solved algorithmically

51
New cards

instance

a problem along with a specific input, for example sorting the list (2,3,1,7)

52
New cards

decision problem

a problem with a yes/no answer (e.g., is there a path from A to B?)

53
New cards

optimization problem

a problem with the goal of finding the "best" solution among many (e.g., what is the shortest path from A to B?)

54
New cards

efficiency

an estimation of the amount of computational resources used by an algorithm

55
New cards

reasonable amount of time

polynomial efficiency or lower (constant, linear, square, cube, etc.)

56
New cards

unreasonable amount of time

exponential or factorial efficiencies

57
New cards

heuristic

an approach to a problem that produces a solution that is not guaranteed to be optimal but may be used when techniques that are guaranteed to always find an optimal solution are impractical

58
New cards

decidable problem

a decision problem for which an algorithm can be written to produce a correct output for all inputs (e.g., "Is the number even?")

59
New cards

undecidable problem

one for which no algorithm can be constructed that is always capable of providing a correct yes-or-no answer

60
New cards

computing device

a physical artifact that can run a program

61
New cards

computing system

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

62
New cards

computer network

a group of interconnected computing devices capable of sending or receiving data

63
New cards

path

a sequence of directly connected computing devices on a computer network that begins at a sender and ends at a receiver

64
New cards

routing

the process of finding a path from sender to receiver

65
New cards

bandwidth

the maximum amount of data that can be sent in a fixed amount of time

66
New cards

protocol

an agreed-upon set of rules that specify the behavior of a system

67
New cards

open

nonproprietary

68
New cards

scalability

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

69
New cards

data stream

information that is passed through the Internet

70
New cards

packets

chunks of data that make up a data stream

71
New cards

redundancy

the inclusion of extra components that can be used to mitigate failure of a system if other components fail

72
New cards

fault-tolerant

a system that can support failures and still continue to function

73
New cards

sequential computing

a computational model in which operations are performed in order one at a time

74
New cards

parallel computing

a computational model where the program is broken into multiple smaller sequential computing operations, some of which are performed simultaneously

75
New cards

distributed computing

a computational model in which multiple devices are used to run a program

76
New cards

crowdsourcing

the practice of obtaining input or information from a large number of people via the Internet

77
New cards

multifactor authentication

a method of computer access control in which a user is only granted access after successfully presenting several separate pieces of evidence to an authentication mechanism

78
New cards

encryption

the process of encoding data to prevent unauthorized access

79
New cards

decryption

the process of decoding data that has been encoded to prevent unauthorized access

80
New cards

computer virus

a malicious program that can copy itself and gain access to a computer in an unauthorized way

81
New cards

malware

software intended to damage a computing system or to take partial control over its operation

82
New cards

phishing

a technique that attempts to trick a user into providing personal information

83
New cards

keylogging

the use of a program to record every keystroke made by a computer user in order to gain fraudulent access to passwords and other confidential information

84
New cards

rogue access point

a wireless access point that gives unauthorized access to secure networks

85
New cards

if statements

affect the sequential flow of control by executing different statements based on the value of a Boolean expression

86
New cards

return value

result of a called procedure

87
New cards

speedup

the time it took to complete a task sequentially divided by the time it took to complete that task when done in parallel

88
New cards

digital divide

differing access to computing devices and the Internet, based on socioeconomic, geographic, or demographic characteristics

89
New cards

citizen science

scientific research conducted in whole or part by distributed individuals, many of whom may not be scientists, who contribute relevant data to research using their own computing devices

90
New cards

IP

Internet Protocol

91
New cards

TCP

Transmission Control Protocol

92
New cards

UDP

User Datagram Protocol

93
New cards

HTTP

Hypertext Transfer Protocol

94
New cards

PII

personally identifiable information