apcsp terminology

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/16

flashcard set

Earn XP

Description and Tags

study for like 2-3 hours ok thx

Last updated 11:10 PM on 5/13/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

17 Terms

1
New cards

input

data sent to a computer by a user.

2
New cards

program functionality

behavior of a program during execution

3
New cards

output

data sent from a program to the device; the result of the input

4
New cards

purpose

the problem being solved

5
New cards

program code segment

a collection of program segments that’re part of a program.

6
New cards

list

an ordered sequence of elements

7
New cards

data has been stored in this list

input into the list can be through an initialization or through computation on other variables or list elements.

8
New cards

collection type

aggregates elements in a single structure. ex: databases, dictionaries, sets.

9
New cards

list being used

using a list means the program is creating new data from existing data or accessing multiple elements in the list.

10
New cards

student-developed procedure/algorithm

program code that’s student developed being written by a student who submitted the response.

11
New cards

procedure

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

12
New cards

parameter

an input variable of a procedure (programming instructions)

13
New cards

algorithm

a finite set of instructions that accomplish a specific task and can constructed using combinations of sequencing, selection, and iteration.

14
New cards

sequencing

each step of an algorithm in the order that they’re given. (think sequence).

15
New cards

selection

determines which parts of an algorithm are executed based on a condition being true or false. (chooses whats true or false).

16
New cards

iteration

repetitive part of an algorithm with a specified number of times until evaluated false.

17
New cards

argument(s)

the value(s) of the parameter(s) when a procedure is called.