• 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/4

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;

4 Cards in this Set

  • Front
  • Back
PROCEDURAL LANGUAGE
= any high level lang in which program statements can be grouped in procedures and functions.
VARIABLE
= a memory location representing a value needed by the program. Value may change while the program is running. A variable must have a specific data type.
PARAMETER
item of data supplied to a subroutine. It is given an actual value when the subroutine is called.

Pass by value = where the value to be used is given as an actual value and is designed at the end of the module.


Pass by ref = pass a reference to an address where the value is stored. Once the module has completed its task any value changed in the variable will be kept.

Algorithm

A sequence of steps designed to perform a particular task. An algorithm may be constructed to describe the operation of a complete system or to describe a particular part of it.