Basics
Syntax/Best Practices
Vocabulary
Operators and Datatypes
Find the Error
100

The Integrated Development Environment that is used for programming and debugging is known as.

What is IDE?

100

The way in which to comment out a single line of code.

What is //?

100

A general process or set of instructions for solving a problem.

What is an algorithm?

100

The operator used for addition.

What is +?

100

cout < "Hello World";

What is missing chevron after/before chevron, should be << instead of <?

200

The process that needs to be successfully completed before code can be executed by the IDE.

What is compilation?

200

Reasons to place comments in your code.

What is code readability(describe and explain), to help remember objectives for the code, or to make maintenance of the code easier?

200

An error in a program.

What is a bug?

200

The datatype used to store integer values that has a size of 4 bytes.

What is int?

200

int i = 0

What is missing semicolon ; after 0?
300

The programming language that C++ is based on.

What is C programming language?

300

A word that is reserved by the language and cannot be used as a variable name.

What is keyword?

300

A named storage location for values.

What is a variable?

300

The datatype used to store double precision floating point values (decimal numbers) that has a size of 8 bytes.

What is double?

300

char c = "C";

What is using double quotes instead of single quotes? Should be 'C';

400

The process that will need to happen whenever an error in compilation or execution occurs.

What is debugging?

400

The way in which to perform multiple line comments.

What is /* 

*/?

400
The structure of a program.

What is syntax?

400

The operator known as modulo that calculates the remainder of a number.

What is %?

400

integer i = 0;

What is incorrect datatype? Should be int instead of integer.

500

The man who invented the C++ programming language.

Who is Bjarne Stroustrup?

500

Reason to instantiate your variables at assignment.

What is preventing garbage values?
500

A program in a high-level language, before being compiled.

What is source code?

500

The binary operator that allows a shortcut for addition to a variable that has been instantiated.

What is +=? 
500

include <iostream>

using namespace std;

What is forgot to include the pound sign before include? Should be #include <iostream>