Code.org AP CSP Vocab Unit 4 - Variables, Conditionals, and Functions

0.0(0)
Studied by 1 person
0%Exam Mastery
Build your Mastery score
multiple choiceAP Practice
Supplemental Materials
call kaiCall Kai
Card Sorting

1/10

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

No analytics yet

Send a link to your students to track their progress

11 Terms

1
New cards

Mod Operator

Returns the remainder or signed remainder of a division, after one number is divided by another

2
New cards

Expression

A combination of operators and values that evaluates to a single value

3
New cards

Assignment Operator

Allows a program to change the value represented by a variable

4
New cards

Variable

A named reference to a value that can be used repeatedly throughout a program

5
New cards

String

An ordered sequence of characters

6
New cards

Boolean Value

A data type that is either true or false

7
New cards

Comparison Operators

Compares two values to create a boolean value (e.g. less than, greater than, equal to)

8
New cards

Logical operators

NOT, AND, and OR, which evaluate to a Boolean value

9
New cards

Conditional Statement

Affect the sequential flow of control by executing different statements based on the value of a Boolean expression

10
New cards

Function

A named group of programming instructions. Also referred to as a proceduce

11
New cards

Function Call

A command that executes the code within a function