ap csp 23@393922

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

1/32

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 4:08 AM on 1/30/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

33 Terms

1
New cards

Algorithm

A step-by-step process or set of instructions used to solve a problem.

2
New cards

Print

A command that displays text or values to the screen.

3
New cards

Declare a variable

To create a variable and give it a name.

4
New cards

Variable

A named storage location that holds data.

5
New cards

Initialize a variable

To assign a variable its first value.

6
New cards

Concatenation

Combining two or more strings into one.

7
New cards

String Variable

A variable that stores text.

8
New cards

Integer Variable

A variable that stores whole numbers.

9
New cards

Float Variable

A variable that stores numbers with decimals.

10
New cards

Input

Data entered into a program by the user.

11
New cards

Exponentiation

Raising a number to a power.

12
New cards

Modulus

An operation that returns the remainder of a division.

13
New cards

Type conversion

Changing a value from one data type to another.

14
New cards

Properties of an object

Attributes or characteristics that describe an object.

15
New cards

Event

An action that triggers code to run.

16
New cards

Callback function

A function passed as an argument to another function to be executed later.

17
New cards

Arithmetic Operators

Mathematical symbols used to perform calculations.

18
New cards

Snake case

A naming convention where words are lowercase and separated by underscores.

19
New cards

Function

A reusable block of code that performs a specific task.

20
New cards

Boolean

A data type that can only be true or false.

21
New cards

Logical Operators

Operators that combine or modify Boolean values.

22
New cards

Comparison Operators

Operators that compare values and return true or false.

23
New cards

If statement

A conditional statement that runs code if a condition is true.

24
New cards

Else statement

A statement that runs code if the if condition is false.

25
New cards

Sequential programming

Code that runs in order, one line at a time.

26
New cards

Non-sequential programming

Code that does not always run in order.

27
New cards

For loops

A loop that repeats a block of code a specific number of times.

28
New cards

Pseudorandom

Numbers that appear random but are generated using an algorithm.

29
New cards

Infinite loop

A loop that never ends unless stopped.

30
New cards

While Loop

A loop that runs as long as a condition is true.

31
New cards

Break

Stops a loop immediately.

32
New cards

Continue

Skips the current loop iteration and moves to the next one.

33
New cards