Unit 3 AP CSP Vocab

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/52

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.

53 Terms

1
New cards

Unit 3 Vocabulary

2
New cards

argument:An argument is the actual value supplied to a function’s parameter when the function is called.

3
New cards
4
New cards

Boolean value:A Boolean value represents a true/false condition used to control decisions and logic in a program.

5
New cards

conditional loop:A conditional loop repeats instructions based on a condition; the loop continues as long as the condition is true (or until it becomes true).

6
New cards
7
New cards

conditional statements:Conditional statements execute certain blocks of code only if specified conditions are met (true).

8
New cards
9
New cards

counting loop:A counting loop repeats a block of code a set number of times, often using a loop variable to keep track of how many times it has run.

10
New cards
11
New cards

elif statement:An elif statement tests a new condition if the previous if or elif condition was false. It allows the program to choose between more than two paths.

12
New cards
13
New cards

else statement:An else statement provides an alternative set of commands that run only if the condition in an if statement is false

14
New cards
15
New cards

for loop:A for loop allows a program to repeat a set of instructions a fixed number of times, using a loop variable that changes with each repetition.

16
New cards
17
New cards

function:A function is a named group of instructions that can be called (used) multiple times to perform a specific task.

18
New cards
19
New cards
20
New cards
21
New cards
22
New cards

if statement:An if statement runs a block of code only if a specified condition is true.

23
New cards
24
New cards

infinite loop:An infinite loop is a loop that continues to run forever because its stopping condition is never true or because it has no condition to stop.

25
New cards
26
New cards

iteration:Iteration is the repetition of a set of instructions in a program until a condition is met or for a certain number of times.

27
New cards
28
New cards

logical operators:Logic operators connect or change Boolean values or expressions to create new Boolean results.

29
New cards
30
New cards

manage complexity:Managing complexity means dividing a program or problem into smaller pieces, often using functions, procedures, or abstractions, so it’s simpler to solve and modify.

31
New cards
32
New cards

modularity:Modularity means dividing a program into separate pieces (modules) that can be developed, tested, and understood independently but work together to solve a problem.

33
New cards
34
New cards

nested conditional statements:Nested conditional statements occur when one conditional statement is located inside the block of another conditional statement.

35
New cards
36
New cards

parameters:Parameters are placeholders in a function that receive values (arguments) passed into the function when it is called.

37
New cards
38
New cards

procedural abstraction:Procedural abstraction means defining a procedure that performs a specific task, so the user of that procedure only needs to know what it does, not how it does it.

39
New cards
40
New cards

procedure:A procedure is a reusable set of instructions that can be executed whenever it is called, often to perform a particular task.

41
New cards
42
New cards
43
New cards
44
New cards

procedure call:A procedure call is when the program runs the instructions inside a named procedure by using the procedure’s name.

45
New cards
46
New cards

relational operators:Relational operators compare two values and produce a Boolean result based on the comparison.

47
New cards
48
New cards

selection:Selection is the process where a program makes decisions by executing certain instructions only if specific conditions are met.

49
New cards
50
New cards

while loop:A while loop runs the instructions inside it repeatedly while a condition remains true.

51
New cards
52
New cards
53
New cards