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

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;

13 Cards in this Set

  • Front
  • Back
What is an algorithym
a step by step problem solving procedure
How can an algorithm be represented
one way is ith a flowchart
what are the three flow chart symbols?
diamond
rectangle
oval
Diamonds mean?
decisions
Rectangles mean?
process
Ovals mean?
terminators: start/stop
_____ allow you to be in control of the order in which instructions are executed.
control structures
These structures are called control sstructures or logic structures, because they control the flow of a _________
program's logic
What are the 2 familiar control structures?
Do in order
Do together
This is where some condition are checked and a decision is made as to which section of code will run or not run.
Conditional Execution
The if/else or if statement is in ______
the conditional category
This is a statement that makes a decision, based on the ___ of a certain condition.
value
We can also use an ___ in a boolean function.
if