Font size
WorksheetsAP CSP Course Vocabulary A1
Total questions: 100
Worksheet time: 50mins
A way of representing information using only two options. Fill in the blank with the correct term.
Binary
Decimal
Hexadecimal
Octal
A way of representing information using ten options. Fill in the blank with the correct term.
Decimal
Binary
Octal
Hexadecimal
A contraction of 'Binary Digit'; the single unit of information in a computer, typically represented as a 0 or 1. Fill in the blank with the correct term.
Bit
Byte
Nibble
Word
8 bits. Fill in the blank with the correct term.
Byte
Nibble
Word
Kilobyte
Error from attempting to represent a number that is too large. Fill in the blank with the correct term.
(a)
Error from attempting to represent a number that is too precise. The value is rounded. Fill in the blank with the correct term.
Round-off Error
Syntax Error
Overflow Error
Truncation Error
Data with values that change continuously, or smoothly, over time. Some examples of this type of data include music, colors of a painting, or position of a sprinter during a race. Fill in the blank with the correct term.
Analog Data
Digital Data
Discrete Data
Binary Data
Data that changes discretely through a finite set of possible values. Fill in the blank with the correct term.
Digital Data
Analog Data
Continuous Data
Random Data
A process for creating a digital representation of analog data by measuring the analog data at regular intervals called samples. Fill in the blank with the correct term.
Sampling
Quantization
Modulation
Encoding
A process for reducing the number of bits needed to represent something without losing any information. This process is reversible. Fill in the blank with the correct term.
Lossless Compression
Lossy Compression
Encryption
Decompression
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. Fill in the blank with the correct term.
Lossy Compression
Lossless Compression
Encryption
Decompression
A work or invention that is the result of creativity, such as a piece of writing or a design, to which one has rights and for which one may apply for a patent, copyright, trademark, etc. Fill in the blank with the correct term.
Intellectual Property
Physical Asset
Natural Resource
Public Domain
A collection of public copyright licenses that enable the free distribution of an otherwise copyrighted work, used when an author wants to give people the right to share, use, and build upon a work that they have created. Fill in the blank with the correct term.
Creative Commons
Public Domain
Fair Use
Open Source
A machine that can run a program, including computers, tablets, servers, routers, and smart sensors is called a ________.
Computing Device
Peripheral Device
Input Device
Storage Device
A group of computing devices and programs working together for a common purpose is called a ________.
Computing System
Database
Algorithm
Network Protocol
A group of interconnected computing devices capable of sending or receiving data is called a ________.
Computing Network
Data Processor
Input Device
Software Application
The series of connections between computing devices on a network starting with a sender and ending with a receiver is called a ________.
Path
Node
Packet
Protocol
The maximum amount of data that can be sent in a fixed amount of time, usually measured in bits per second, is called ________.
Bandwidth
Latency
Throughput
Packet loss
An agreed-upon set of rules that specify the behavior of some system is called a ________.
Protocol
Algorithm
Database
Compiler
The unique number assigned to each device on the Internet is called an ________.
IP Address
MAC Address
Subnet Mask
Gateway
A protocol for sending data across the Internet that assigns unique numbers (IP addresses) to each connected device is called ________.
Internet Protocol (IP)
Hypertext Transfer Protocol (HTTP)
File Transfer Protocol (FTP)
Simple Mail Transfer Protocol (SMTP)
A type of computer that forwards data across a network is called a ________.
Router
Monitor
Printer
Keyboard
A chunk of data sent over a network. Larger messages are divided into these that may arrive at the destination in order, out-of-order, or not at all. This is called a ________.
Packet
Frame
Segment
Block
The inclusion of extra components so that a system can continue to work even if individual components fail is called ________.
Redundancy
Efficiency
Latency
Throughput
The ability to continue to function even in the event of individual component failures is called being ________.
Fault Tolerant
Load Balanced
Scalable
Redundant
The protocol used for transmitting web pages over the Internet is called ________.
HTTP (HyperText Transfer Protocol)
FTP (File Transfer Protocol)
SMTP (Simple Mail Transfer Protocol)
POP3 (Post Office Protocol 3)
The system responsible for translating domain names like example.com into IP addresses is called ________.
Domain Name System (DNS)
File Transfer Protocol (FTP)
Simple Mail Transfer Protocol (SMTP)
Hypertext Transfer Protocol (HTTP)
A system of linked pages, programs, and files is called the ________.
World Wide Web
Internet
Operating System
Database
Differing access to computing devices and the Internet, based on socioeconomic, geographic, or demographic characteristics, is called the ________.
Digital Divide
Information Overload
Net Neutrality
Cloud Computing
Fill in the blank: The ________ are the inputs and outputs that allow a user to interact with a piece of software. User interfaces can include a variety of forms such as buttons, menus, images, text, and graphics.
User Interface
Database
Algorithm
Network
Fill in the blank: ________ are 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.
Input
Output
Storage
Process
Fill in the blank: ________ is 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.
Output
Input
Storage
Process
Fill in the blank: A ________ is a command or instruction. Sometimes also referred to as a code statement.
Program Statement
Variable
Function
Loop
Fill in the blank: A ________ is a collection of program statements. Programs run (or “execute”) one command at a time.
Program
Variable
Loop
Function
Fill in the blank: ________ is when program statements run in order, from top to bottom.
Sequential Programming
Parallel Programming
Event-driven Programming
Object-oriented Programming
Fill in the blank: ________ is when some program statements run when triggered by an event, like a mouse click or a key press.
Event Driven Programming
Sequential Programming
Procedural Programming
Batch Processing
Fill in the blank: ________ is a written description of how a command or piece of code works or was developed.
Documentation
Execution
Compilation
Encryption
Fill in the blank: ________ is a form of program documentation written into the program to be read by people and which do not affect how a program runs.
Comment
Variable
Function
Operator
Fill in the blank: ________ is a collaborative programming style in which two programmers switch between the roles of writing code and tracking or planning high level progress.
Pair Programming
Solo Programming
Extreme Programming
Mob Programming
Fill in the blank: ________ is finding and fixing problems in an algorithm or program.
Debugging
Compiling
Designing
Executing
Fill in the blank: ________ are the steps or phases used to create a piece of software. Typical phases include investigating, designing, prototyping, and testing.
Development process
User interface
Source code
Database schema
Fill in the blank: An ________ is associated with an action and supplies input data to a program. Can be generated when a key is pressed, a mouse is clicked, a program is started, or by any other defined action that affects the flow of execution.
Event
Variable
Loop
Function
What is a combination of operators and values that evaluates to a single value?
Expression
Statement
Function
Variable
What allows a program to change the value represented by a variable?
Assignment Operator
Comparison Operator
Logical Operator
Increment Operator
What is a named reference to a value that can be used repeatedly throughout a program?
Variable
Constant
Function
Operator
What is an ordered sequence of characters called?
String
Integer
Boolean
Array
What is a data type that is either true or false?
Boolean Value
Integer
String
Float
What do the operators <, >, <=, >=, ==, != indicate in a Boolean expression?
Comparison Operators
Arithmetic Operators
Assignment Operators
Logical Operators
What are NOT, AND, and OR, which evaluate to a Boolean value, called?
Logical operator
Arithmetic operator
Assignment operator
Relational operator
What affects the sequential flow of control by executing different statements based on the value of a Boolean expression?
Conditional Statement
Loop Statement
Assignment Statement
Function Call
What is a named group of programming instructions, also referred to as a 'procedure'?
Function
Variable
Loop
Constant
What is a command that executes the code within a function called?
Function Call
Function Definition
Function Parameter
Function Return
Which term is defined as 'data about data'?
Metadata
Crowdsourcing
Data bias
Correlation
Which term refers to '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'?
Citizen Science
Data filtering
Cleaning Data
Information
Which term describes 'a process that makes the data uniform without changing its meaning (e.g., replacing all equivalent abbreviations, spellings, and capitalizations with the same word)'?
Cleaning Data
Metadata
Correlation
Data bias
Which term is 'a relationship between two pieces of data, typically referring to the amount that one varies in relation to the other'?
Correlation
Crowdsourcing
Information
Data filtering
Which term is defined as 'the practice of obtaining input or information from a large number of people via the Internet'?
Crowdsourcing
Metadata
Data bias
Cleaning Data
Which term refers to 'the collection of facts and patterns extracted from data'?
Information
Data filtering
Correlation
Citizen Science
Which term is 'data that does not accurately reflect the full population or phenomenon being studied'?
Data bias
Metadata
Cleaning Data
Crowdsourcing
Which term means 'choosing a smaller subset of a data set to use for analysis, for example by eliminating / keeping only certain rows in a table'?
Data filtering
Information
Correlation
Metadata
Fill in the blank: ______ is an ordered collection of elements.
List
Set
Dictionary
Tuple
Fill in the blank: ______ is an individual value in a list that is assigned a unique index.
Element
Array
Function
Operator
Fill in the blank: ______ is a common method for referencing the elements in a list or string using numbers.
Index
Pointer
Label
Reference
Fill in the blank: ______ is a repetitive portion of an algorithm which repeats a specified number of times or until a given condition is met.
Iteration
Variable
Function
Constant
Fill in the blank: ______ occurs when the ending condition will never evaluate to true.
Infinite loop
Syntax error
Variable assignment
Function call
Fill in the blank: ______ is the process of accessing each item in a list one at a time.
Traversal
Sorting
Searching
Insertion
Fill in the blank: ______ is used to manage complexity in programs by giving a collection of data a name without referencing the specific details of the representation.
Data abstraction
Encapsulation
Polymorphism
Recursion
Fill in the blank: A ________ is a variable in a function definition. Used as a placeholder for values that will be passed through the function.
Parameter
Constant
Operator
Statement
Fill in the blank: An ________ is the value passed to the parameter.
Argument
Function
Variable
Operator
Fill in the blank: ________ is 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.
Return
Break
Continue
Goto
Fill in the blank: ________ is a process and allows a procedure to be used only knowing what it does, not how it does it. It allows a solution to a large problem to be based on the solution of smaller subproblems.
Procedural abstraction
Encapsulation
Polymorphism
Recursion
Fill in the blank: A ________ is a group of functions (procedures) that may be used in creating new programs.
Library
Variable
Constant
Operator
Fill in the blank: ________ stands for Application Program Interface - specifications for how functions in a library behave and can be used.
API
CPU
RAM
HTML
Fill in the blank: ________ is the subdivision of a computer program into separate subprograms.
Modularity
Recursion
Iteration
Compilation
What is the term for the following definition? 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).
Computing Innovation
Algorithm
Database
Network
What is the term for the following definition? Information about an individual that identifies, links, relates, or describes them.
Personally Identifiable Information (PII)
Public Key Infrastructure (PKI)
Protected Health Information (PHI)
Confidential Business Information (CBI)
What is the term for the following definition? 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.
Phishing
Encryption
Firewall
Malware
What is the term for the following definition? 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.
Keylogging
Phishing
Spoofing
Ransomware
What is the term for the following definition? Software intended to damage a computing system or to take partial control over its operation.
Malware
Firmware
Shareware
Freeware
What is the term for the following definition? A wireless access point that gives unauthorized access to secure networks.
Rogue Access Point
Wireless Bridge
Repeater
Network Switch
What is the term for the following definition? A process of encoding messages to keep them secret, so only "authorized" parties can read it.
Encryption
Decryption
Compression
Authentication
What is the term for the following definition? A process that reverses encryption, taking a secret message and reproducing the original plain text.
Decryption
Encryption
Encoding
Compression
What is the term for the following definition? Involves one key for both encryption and decryption.
Symmetric Key Encryption
Asymmetric Key Encryption
Hashing
Digital Signature
What is the term for the following definition? 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.
Public Key Encryption
Symmetric Key Encryption
Hashing Algorithm
Digital Signature
What is the term for the following definition? 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.
Multi-factor Authentication
Single Sign-On
Password Hint
Data Encryption
What is the term for the following definition? Protects a computing system against infection.
Computer Virus Scanning Software
Word Processing Software
Spreadsheet Application
Web Browser
What is the term for the following definition? A general description of a task that can (or cannot) be solved with an algorithm.
Problem
Solution
Algorithm
Procedure
What is the term for the following definition? A finite set of instructions that accomplish a task.
Algorithm
Database
Compiler
Protocol
What is the term for the following definition? Putting steps in an order.
(a)
What is the term for the following definition? Deciding which steps to do next.
Selection
Iteration
Execution
Input
What is the term for the following definition? Doing some steps over and over.
Iteration
Summation
Division
Condition
What is the term for the following definition? A measure of how many steps are needed to complete an algorithm.
Efficiency
Redundancy
Latency
Complexity
What is the term for the following definition? A search algorithm which checks each element of a list, in order, until the desired value is found or all elements in the list have been checked.
Linear Search
Binary Search
Depth First Search
Breadth First Search
What is the term for the following definition? A search algorithm that starts at the middle of a sorted set of numbers and removes half of the data; this process repeats until the desired value is found or all elements have been eliminated.
Binary Search
Linear Search
Bubble Sort
Depth First Search
What is the term for the following definition? Algorithms with a polynomial efficiency or lower (constant, linear, square, cube, etc.) are said to run in a reasonable amount of time.
Reasonable Time
Exponential Time
Logarithmic Time
Unreasonable Time
What is the term for the following definition? Algorithms with exponential or factorial efficiencies are examples of algorithms that run in an unreasonable amount of time.
Unreasonable Time
Constant Time
Linear Time
Reasonable Time
What is the term for the following definition? Provides a "good enough" solution to a problem when an actual solution is impractical or impossible.
Heuristic
Algorithm
Proof
Optimization
What is the term for the following definition? A problem with a yes/no answer (e.g., is there a path from A to B?)
Decision Problem
Optimization Problem
Search Problem
Enumeration Problem
What is the term for the following definition? A problem with the goal of finding the "best" solution among many (e.g., what is the shortest path from A to B?)?
Optimization Problem
Classification Problem
Sorting Problem
Simulation Problem
What is the term for the following definition? A problem for which no algorithm can be constructed that is always capable of providing a correct yes-or-no answer.
Undecidable Problem
Decidable Problem
Tractable Problem
P vs NP Problem
