AP CSP - Vocabulary

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

1/178

flashcard set

Earn XP

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

179 Terms

1
New cards

Bit

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

2
New cards

Byte

8 bits

3
New cards

Binary

a way of representing information using only two options

4
New cards

Binary Number System

a system for representing numbers using combinations of the digits 0 and 1

5
New cards

Decimal Number System

a system for representing numbers using combinations of the digits 0 - 9

6
New cards

Overflow Error

an incorrect value from attempting to represent a number that is too large

7
New cards

Round-off Error

an incorrect value from attempting to represent a number that is too precise

8
New cards

Digital Data

data that changes discreetly through a finite set of possible values

9
New cards

Analog Data

data with values that change continuously, or smoothly, over time, for example, music and colors of a painting

10
New cards

Sampling

a process for creating a digital representation of analog data by measuring the analog data at regular intervals

11
New cards

Pixel

the fundamental unit of a digital image, typically a tiny square or dot which contains a single point of color of a larger image

12
New cards

Resolution

the dimensions by which you can measure how many pixels are on a screen

13
New cards

RGB

the RGB color model that uses varying intensities of (R)ed, (G)reen, and (B)lue light added together to reproduce a broad array of colors

14
New cards

Data Compression

a process for reducing the number of bits needed to represent a piece of information

15
New cards

Lossless Compression

a process for reducing the number of bits needed to represent something without losing any information; this process is reversible

16
New cards

Lossy Compression

a process for reducing the number of bits needed to represent something in which some information is lost

17
New cards

Intellectual Property

a work or invention that is the result of creativity, such as a piece of writing or a design, to which one has rights

18
New cards

Creative Commons

A collection of public copyright licenses that enable the free distribution of an otherwise copyrighted work. It allows artists to declare how they want their creations to be shared and used

19
New cards

Open Access

content free of any and all restrictions on access and free of many restrictions on use

20
New cards

Open Source

programs that are made freely available and may be redistributed and modified

21
New cards

Computing Innovation

Includes a program as an integral part of its function. Can be physical (e.g. self-driving car), non-physical computing software (e.g. picture editing software), or non-physical computing concepts (e.g., e-commerce).

22
New cards

Personally Identifiable Information (PII)

Information about an individual that identifies, links, relates, or describes them.

23
New cards

Phishing

A technique that attempts to trick a user into providing personal information. That personal information can then be used to access sensitive online resources, such as bank accounts and emails.

24
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.

25
New cards

Malware

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

26
New cards

Rogue Access Point

A wireless access point that give unauthorized access to secure networks.

27
New cards

Encryption

A process of encoding messages to keep them secret, so only "authorized" parties can read it.

28
New cards

Decryption

A process that reverses encryption, taking a secret message and reproducing the original plain text.

29
New cards

Symmetric Encryption

Involves one key for both encryption and decryption.

30
New cards

Asymmetric Encryption

Pairs a public key for encryption and a private key for decryption. The sender does not need the receiver's private key to encrypt a message, but the receiver's private key is required to decrypt the message.

31
New cards

Freeware

Untrustworthy (often free) downloads from freeware or shareware sites can contain malware.

32
New cards

Multi-factor Authentication

A system that requires at least two steps to unlock protected information; each step adds a new layer of security that must be broken to gain unauthorized access

33
New cards

Strong password

Something that is easy for a user to remember but would be difficult for someone else to guess based on knowledge of that user.

34
New cards

Virus

A malicious program that can copy itself and gain access to a computer in an unauthorized way. Computer viruses often attach themselves to legitimate programs and start running independently on a computer.

35
New cards

Caesar Cipher

A technique for encryption that shifts the alphabet by some number of characters

36
New cards

Random Substitution

An encoding technique that maps each letter of the alphabet randomly to different letters or characters.

37
New cards

Cipher

The generic term for a technique (or algorithm) that performs encryption.

38
New cards

Cracking Encryption

When you attempt to decode a secret message without knowing all the specifics of the cipher.

39
New cards

Computer Virus Scanning Software

Protects a computer system against infection.

40
New cards

DDoS Attack

Hacker floods a server with numerous bogus requests so that legitimate users can no longer access the server.

41
New cards

Certificate Authority (CA)

A trusted third-party agency that is responsible for issuing digital certificates.

42
New cards

GDPR (General Data Protection Regulation)

A group of regulations implemented by the European Union (EU) to protect personal data of EU citizens.

43
New cards

Parameter

A variable in a function definition. Used as a placeholder for values that will be passed through the function.

44
New cards

Argument

The value passed to the parameter of a function.

45
New cards

Return

Used to return the flow of control to the point where the procedure (also known as a function) was called and to return the value of expression.

46
New cards

Procedural Abstraction

Identifying repetitive code statements and placing them in one procedure that can be referenced by many objects

47
New cards

Library

A group of functions (procedures) that may be used in creating new programs.

48
New cards

API: Application Program Interface

Specifications for how functions in a library behave and can be used.

49
New cards

Modularity

The subdivision of a computer program into separate subprograms that are each responsible for one aspect of hte program's functionality

50
New cards

Sequencing

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

51
New cards

Selection

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

52
New cards

Iteration

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

53
New cards

Algorithm

A step-by-step procedure or set of rules for solving a specific problem or task

54
New cards

MOD operation

The remainder that is left after a number is divided by another number.

55
New cards

Function

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

56
New cards

Function Call

A command that executes the code within a function.

57
New cards

Conditional Statement

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

58
New cards

Heuristic

a problem solving approach (algorithm) to find a satisfactory solution where finding an optimal or exact solution is impractical or impossible. Often used in AI, optimization problems, and decision-making processes

59
New cards

List

An ordered collection of elements.

60
New cards

Element

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

61
New cards

Index

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

62
New cards

Iteration

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

63
New cards

Infinite Loop

Occurs when the ending condition will never evaluate to true.

64
New cards

Traversal

The process of accessing each item in a list one at a time.

65
New cards

Append

Add elements to the end of a list.

66
New cards

Data Abstraction

Manage complexity in programs by giving a collection of data a name without referencing the specific details of the representation, so programmers can work with the information while ignoring lower-level details

67
New cards

Loops

Running the same sequence of code multiple times.

68
New cards

Logic Error

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

69
New cards

Simulation

Abstractions of more complex objects or phenomena for a specific purpose.

70
New cards

Substring

Part of an existing string.

71
New cards

While Loop

A programming construct used to repeat a set of commands as long as a boolean condition is true.

72
New cards

For Loop

Loops that have a predetermined beginning, end, and increment (step interval).

73
New cards

Filter

Creating a subset of elements from an original list.

74
New cards

Reduce

Taking a list and reducing it down to a single element.

75
New cards
76
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.

77
New cards

Cleaning Data

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

78
New cards

Correlation

a relationship between two pieces of data, typically referring to the amount that one varies in relation to the other.

79
New cards

Crowdsourcing

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

80
New cards

Information

the collection of facts and patterns extracted from data

81
New cards

Data bias

data that does not accurately reflect the full population or phenomenon being studied

82
New cards

Data filtering

choosing a smaller subset of a data set to use for analysis, for example by eliminating / keeping only certain rows in a table

83
New cards

Data set

a collection of related sets of information

84
New cards

Database

an organized collection of structured information, or data, typically stored electronically in a computer system

85
New cards

Parallel systems

the simultaneous use of multiple computer resources that can include a single computer with multiple processors

86
New cards

Bar graph

a diagram in which the numerical values of variables are represented by the height or length of lines or rectangles of equal width

87
New cards

Histogram

a diagram consisting of rectangles whose area is proportional to the frequency of a variable and whose width is equal to the class interval

88
New cards

Scatterplot

a graph in which the values of two variables are plotted along two axes, the pattern of the resulting points revealing any correlation present

89
New cards

Crosstab

a type of table in a matrix format that displays the multivariate frequency distribution of the variables

90
New cards

Algorithm bias

systematic and repeatable errors in a computer system that create "unfair" outcomes, such as "privileging" one category over another

91
New cards

Open data

data that is openly accessible, exploitable, editable and shared by anyone for any purpose

92
New cards

Machine learning

a type of artificial intelligence that leverages massive amounts of data so that computers can improve the accuracy of actions and predictions on their own without additional programming.

93
New cards

User Interface

The inputs and outputs that allow a user to interact with a piece of software. Can include a variety of forms such as buttons, menus, images, text, and graphics.

94
New cards

Input

Data that are sent to a computer for processing by a program. Can come in a variety of forms, such as tactile interaction, audio, visuals, or text.

95
New cards

Output

Any data that are sent from a program to a device. Can come in a variety of forms, such as tactile interaction, audio, visuals, or text.

96
New cards

Program Statement

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

97
New cards

Program

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

98
New cards

Sequential Programming

Program statements run in order, from top to bottom.

99
New cards

Event Driven Programming

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

100
New cards

Documentation

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