APCSP

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

1/50

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.

51 Terms

1
New cards

Algorithm

a finite set of instructions that accomplish a specific task.

2
New cards

Code statement

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

3
New cards

Expression

can consist of a value, a variable, an operator, or a procedure call that returns a value; expressions are evaluated to produce a single value.

4
New cards

Execute

the process of running a computer software program, script, or command.

5
New cards

Behavior

how a program functions during execution; often described by how a user interacts with it.

6
New cards

Program inputs

data sent to a computer for processing by a program; it can come in a variety of forms, such as tactile, audio, visual, or text.

7
New cards

Program outputs

any data sent from a program to a device; can come in a variety of forms, such as tactile, audio, visual, or text.

 

8
New cards

Event

an occurrence; things that happen; usually associated with an action (i.e. mouse click, button pressed).

9
New cards

Event handler 

a part of code that 'handles' or listens for a specific type of event; when that event occurs, the code inside the event

10
New cards

Program documentation

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

11
New cards

Comments

a form of program documentation written into the program that helps explain what the code is doing. Comments in a program do not affect how a program runs.

12
New cards

Logic error

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

13
New cards

Syntax error

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

14
New cards

Run-time error

a mistake in the program that occurs during the execution of a program; programming languages define their own run-time errors.

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

16
New cards

Testing

using defined inputs to ensure that an algorithm or program is producing the expected outcomes, in the development process.

17
New cards

Sequencing

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

18
New cards

Selection

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

19
New cards

Nested conditional statements

consist of conditional statements within conditional statements.

20
New cards

Iteration 

a repeating portion of an algorithm; iteration repeats a specified number of times or until a given condition is met.

21
New cards

Variable

an abstraction inside a program that can hold a value. Each variable has associated data storage that represents one value at a time, but that value can be an array/list or other collection that in turn contains multiple values.

22
New cards

Variable Types

some programming languages provide types to represent data. These types include numbers, Booleans, arrays/lists, and strings.

23
New cards

Element

an individual value in an array/list that is assigned a unique index.

24
New cards

Index

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

25
New cards

String

an ordered sequence of characters.

26
New cards

String concatenation

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

27
New cards

Substring

part of an existing string.

28
New cards

Boolean value

a variable that is either true or false.

29
New cards

Data abstraction

provides a separation between the abstract properties of a data type and the concrete details of its representation; manages complexity in programs by giving a collection of data a name without referencing the specific details of the representation.

30
New cards

Procedural abstraction

provides a name for a process and allows a procedure to be used only knowing what it does, not how it does it; allows a solution to a large problem to be based on the solutions of smaller subproblems.

31
New cards

Modularity

the subdivision of a computer program into separate subprograms.

32
New cards

Function/Procedure

a named group of programming instructions that may have parameters and return values; also known as method or function.

33
New cards

Parameters

input variables of a function/procedure.

34
New cards

Arguments

specify the values of the parameters when a procedure is called.

35
New cards

Array or List

an ordered sequence of values.

36
New cards

Traversing

traversing a list can be complete traversal, where all elements in the list are accessed, or a partial traversal, where only a portion of elements are accessed.

37
New cards

Linear search (sequential search) algorithms

check each element of a list, in order, until the desired value is found or all elements in the list have been checked.

38
New cards

Binary search algorithms

starts at the middle of a sorted data set of numbers and eliminates half of the data; this process repeats until the desired value is found or all elements have been eliminated.

39
New cards

Software library

contains functions/procedures that may be used in creating new programs.

40
New cards

Application program interfaces (API)

are specifications for how programs, functions or procedures behave and can be used by other software.

41
New cards

Simulation

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

42
New cards

Problem

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

43
New cards

Instance

specific input of a problem (ex: sorting is a problem; sorting the list (2, 3, 1, 7) is an instance of the problem.

44
New cards

Decision problem

problem with a yes/no answer (ex: is there a path from A to B?).

45
New cards

Optimization problem

problem with the goal of finding the "best" solution among many. (ex: what is the shortest path from A to B?)

46
New cards

Efficiency

an estimation of the amount of computational resources used by an algorithm; typically expressed as a function of the size of the input.

47
New cards

Reasonable amount of time

algorithms with a polynomial efficiency or slower (constant, linear, square, cube, etc.).

48
New cards

Unreasonable amount of time

algorithms with exponential or factorial efficiencies.

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

50
New cards

Decidable problem

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

51
New cards

Undecidable problem

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