Coding Vocabulary - List 1

Due: Jan 30, 2026, 1:00 PM

call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/17

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 4:40 PM on 1/23/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Add student to class section state
Add studentsNo students in these sections. Invite them to track progress!

18 Terms

1
New cards

coding

telling a computer what to do

2
New cards

developers

people who write code to build their own apps and games

3
New cards

command

a specific action for the computer to perform

4
New cards

sequence

the order in which the commands are given

5
New cards

bug

an error in your code

6
New cards

debugging

the process of identifying and fixing the error

7
New cards

function

a collection of commands grouped together and given a name. The set of commands can then be run with just the name of the function whenever the set is needed.

8
New cards

for loop

runs a block of code over and over for a set number of times

9
New cards

condition

something you test that results in true or false

10
New cards

conditional code

a block of code that will run only if something is true.

11
New cards

Boolean

a value that can only be either true or false

12
New cards

logical operator

a symbol or word like "and," "or," and "not" that connects two or more Booleans to make conditional decisions more specific

13
New cards

&&

AND

14
New cards

II

OR

15
New cards

!

NOT

16
New cards

call

Telling a program to run a function

17
New cards

composition

The process of combining small parts of a program to solve a larger problem

18
New cards

camelCase

A coding naming convention where the first letter of a variable or function name begins with a lowercase letter and each following word in the name begins with an uppercase letter without spacing between words