The term also used to describe the selection control structure.
When a computer is preforming the instructions contained in a program, it is called?
What is executing.
Which type of programming error causes a program to stop loading or executing?
What is runtime error.
Which term is used to describe the use of zeros and ones in a sequence to represent data?
The term that describes a group of objects with common properties.
What is class.
What is debuging.
Which control structure repeats a set of instructions until some condition is met?
What is a loop.
The set of rules that must be followed when writing program instructions for a specific programming language is called?
What is syntax.
Binary is based on which number system?
What is base 2.
What is the only language that a computer can understand without needing to be translated?
What is machine language.
The numbers 7.5, 2.1, 48.6 would be stored using what variable data type?
What is a floating point.
The purpose of compliers and interpreters is to ____ so the computer can understand the instructions.
Which type of statements are most often associated with the selection programming structure?
What is if/else statements.
Java, Visual Basics, Python and C++ are examples of what type of programming langauge?
What is high-level language.
Used to store data in the computer's memory that can be accessed and used when running a program.
What is a variable.
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.
There are __ types of programming errors.
What is 3 types
Which type of programming is designed by breaking problems into smaller, logical problems to make them easier to execute?
What is structured programming.
Which type of error occurs when a programmer misspells a word or instruction?
What is a syntax error.
What term describes the various characteristic of an object such as size, color, and type?
What is a property.
Using short informal phrases to describes program functions (such as "if total is more than 10, add discount") is called?
What is pseudocode.
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.
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.
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.
Which term describes a series of zeros and ones that represent the basic unit of data that a computer processes?
What is a byte.