Section 1

Preview this deck

Branching

Front

Star 0%
Star 0%
Star 0%
Star 0%
Star 0%

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Active users

3

All-time users

3

Favorites

0

Last updated

1 year ago

Date created

Mar 14, 2020

Cards (11)

Section 1

(11 cards)

Branching

Front

Tells the computer to start executing a different part of program rather than one by one.

Back

Assignment Operator

Front

A symbol in code that assigns values from the right side of an equation (called an operand) to what is on the left side of the equation. Assigning a value to a variable is a classic example that uses the "equal to" assignment operator (Example: color = 255).

Back

Data(Type)

Front

A classification of data or "class type" that defines what a data item is or is not, such as integer, float, string, or Boolean.

Back

Logical Operator

Front

Operators that determine if certain conditions are true or false.

Back

Tracer (Round) Program

Front

A highly abstracted program that implements only the most basic and necessary structures without implementing the more specific details.

Back

Nesting

Front

Putting a function inside another function or a loop inside another loop. One method is contained within another one.

Back

Syntax

Front

The set of rules that defines the combinations of symbols that are considered to be correctly structured in that language. The grammar and spelling of text-based programming languages.

Back

Equality Operators

Front

An operator that compares values. An example of a numerical equality is testing whether a conditional statement returned the value you were looking for (8=8).

Back

Variable

Front

The smallest unit of data storage that a program can use. A variable contains known or unknown information referred to as a "value." Two types of variables are global and local.

Back

Syntactically

Front

According to the rules of syntax.

Back

Chained Conditionals

Front

A series of conditionals that a computer moves through until it finds the one that is true.

Back