• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/9

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

9 Cards in this Set

  • Front
  • Back

Statement

A Single Instruction that is executed by the computer.


e.g x=5

Sequence

Each Instruction is executed once in the order it is given.

Selection

One of a number of instructions is executed based on a condition.

Iteration

An instruction is repeated a set number of times or until a condition is met.

Subroutine

A named block of instructions that performs a specific task.

Procedure

A subroutine that Does Not return a value.

Function

A subroutine that Does return a value.

Array

A set of variables, all of the same type, grouped under a single identifier.

Recursion

A recursive function is one that calls itself until a base case is met.