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

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;

24 Cards in this Set

  • Front
  • Back

What is it called when you break down a complex problem into smaller problems.

Decomposition

What is it called when you pick up all the important information from a problem ignoring the specific details.

Abstraction

A logical way of getting from the problem to the solution.

Algorithmic Thinking

What is not an actual programming language?

Pseudocode

Name the Logic gate?

Or

Name the Logic gate?

And

Name the Logic gate?

Not

Name what it is used as in flow diagrams.

Input/Output

What is the Binary number for 2?

0010

What is the Binary number for 8?

1000

What is the Binary number for 1?

0001

What does INT mean?

Integer

What is used for a decimal number?

Float

What is a collection of alpaneumeric data and characters?

String

What is this used for in programming? "*"

Multiplication

What is this used for in programming? "/"

Division

What is this used for in programming? "=="

Equal to

What is this used for in programming? "<"

Less than

What is this used for in programming? "!=" Or "<>"

Not equal to

What is it called when it is spotting where constructs such as selection and iteration can be used, or where previous solutions can be reused?

Pattern recognition

What is it called when a function keep going until a condition true?

Repeat loop

What is it called when a function keeps repeating it self while a function is true?

While loop

What is the variable called that can only be used within the structure they are declared in?

Local Variable

What is the variable called when it can be used whenever through out the program?

Global variable