Debugging
Logic & Loops
Errors & Structures
Language Types
Variable & Values
100

The term also used to describe the selection control structure.

What is the decision structure. 
100

When a computer is preforming the instructions contained in a program, it is called?

What is executing. 

100

Which type of programming error causes a program to stop loading or executing?

What is runtime error. 

100

Which term is used to describe the use of zeros and ones in a sequence to represent data?

What is binary. 
100

The term that describes a group of objects with common properties.

What is class. 

200
What is the process that a programmer uses to identify errors and make corrections to a program that does not preform the way is was intended or produces the incorrect results?

What is debuging.

200

Which control structure repeats a set of instructions until some condition is met? 

What is a loop.

200

The set of rules that must be followed when writing program instructions for a specific programming language is called?

What is syntax.

200

Binary is based on which number system? 

What is base 2. 

200

What is the only language that a computer can understand without needing to be translated? 

What is machine language. 

300

The numbers 7.5, 2.1, 48.6 would be stored using what variable data type?

What is a floating point. 

300

The purpose of compliers and interpreters is to ____ so the computer can understand the instructions. 

What is translate programs. 
300

Which type of statements are most often associated with the selection programming structure?

What is if/else statements. 

300

Java, Visual Basics, Python and C++ are examples of what type of programming langauge?

What is high-level language. 

300

Used to store data in the computer's memory that can be accessed and used when running a program.

What is a variable.

400

Instructions (such as a recipe) are written so that each step is performed one at a time, from top to bottom, until the task is completed. This type of instruction process is called?

What is the sequential process. 

400

There are __ types of programming errors. 

What is 3 types

400

Which type of programming is designed by breaking problems into smaller, logical problems to make them easier to execute?

What is structured programming. 

400

Which type of error occurs when a programmer misspells a word or instruction?

What is a syntax error. 

400

What term describes the various characteristic of an object such as size, color, and type?

What is a property. 

500

Using short informal phrases to describes program functions (such as "if total is more than 10, add discount") is called?

What is pseudocode. 

500

Consider the following code:

turnRight ();
for (var count = 0; count < 5; count++) {
  moveForward ();
}

The instruction code shown is an example of high-level:

What is programming language.

500

Elsa is programming a robot to move from her front door to her front room. The robot will not be remote controlled and does not have any sensors to "see" its environment. She must program the robot with clear movements that start at her front door, then move down the hall, then turn into her room and finally stop. What terms describes this program structure? 

What is sequential programming. 

500

Jackson is creating a program that asks users four random questions. The questions list is 20 questions long. He wants the program to ask the first question, remove it from the list, and then ask another, remove it and repeat only until only four questions are asked. Which control structure is Jackson using?

What is a loop.

500

Which term describes a series of zeros and ones that represent the basic unit of data that a computer processes?

What is a byte. 

M
e
n
u