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

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;

17 Cards in this Set

  • Front
  • Back
Flow Chart
a graphic organizer that can be used to show the procedural pathways within a program.
Formal Arguments
For internal use within a function, formal arguments are names that represent data passed to the function, discarded after the function has been executed.
Function Name
A unique identifier given to the function when it is defined and used again whenever the function is called.
Garbage Collection
Releases memory that was used for a variable's value once the variable is no longer to be used by a program.
Glass Box Testing
Process for evaluating the correctness or effectiveness of a piece of software while examining its algorithmic structure.
Immutable
Not able to be changed after creation.
Import
In Python import is a key word for using one module of code from inside another module.
Int
A native type representing the integers, which are positive whole numbers and their opposites.
Interpreter Converts
a program written in a higher level language into a lower level language and executes it, beginning execution before converting the entire program.
Iterable
A property of collections that are used to provide elements one at a time and in sequence.
Least Significant Bits
The bits that contribute the smallest amount to the overall value of a binary number, including the 1s place value.
Library
A collection of modules.
Loop
Algorithmic structure for performing the instructions multiple times, with each pass through the loop called an iteration. Usually controlled by a condition evaluated with each iteration.
Machine Code
Zeros and ones that represent simple instructions executed by a processor.
Module
An encapsulated collection of one or more related classes, each with its own methods and attributes.
Multi-line Comment
Denoted by either ‘’’, or “”” these can generate docstrings and allow the programmer to leave notes in code that span several lines without having to type ‘#’ at the beginning of each line.
Multiple Assignment
Python allows a programmer to assign values to several variables at once. This may be used to store a group of values returned by a function.