Big Idea 3: Algorithms/Programming Vocabulary

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

1/12

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 8:17 PM on 9/22/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

13 Terms

1
New cards

Integer

a data type used to represent real numbers that do not have fractional values

2
New cards

String

a data type used to represent text

3
New cards

Boolean

a data type that has only two possible values: true and false

4
New cards

Variable

a storage location paired with a symbolic name which contains some known or unknown quantity

5
New cards

Algorithm

a set of instructions that performs a particular action

6
New cards

Pseudocode

a detailed description written in natural human language of what a computer program or algorithm should do

7
New cards

Selection

when the program can choose between two or more alternatives; commonly, if or else

8
New cards

Conditional

expressions that evaluate to either true or false (if/else statements)

9
New cards

Nested Conditionals

a conditional statement within another conditional statement

10
New cards

MOD

the remainder when dividing 2 integers

11
New cards

Relational Operator

(<, >, =, >=, <=, =!) used to compare the relation between two operands

12
New cards

Logic Operator

a symbol or word used to connect two or more expressions (AND, OR, NOT)

13
New cards

Debugging

finding and fixing errors or bugs in the source code of any software