The Integrated Development Environment that is used for programming and debugging is known as.
What is IDE?
The way in which to comment out a single line of code.
What is //?
A general process or set of instructions for solving a problem.
What is an algorithm?
The operator used for addition.
What is +?
cout < "Hello World";
What is missing chevron after/before chevron, should be << instead of <?
The process that needs to be successfully completed before code can be executed by the IDE.
What is compilation?
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?
An error in a program.
What is a bug?
The datatype used to store integer values that has a size of 4 bytes.
What is int?
int i = 0
The programming language that C++ is based on.
What is C programming language?
A word that is reserved by the language and cannot be used as a variable name.
What is keyword?
A named storage location for values.
What is a variable?
The datatype used to store double precision floating point values (decimal numbers) that has a size of 8 bytes.
What is double?
char c = "C";
What is using double quotes instead of single quotes? Should be 'C';
The process that will need to happen whenever an error in compilation or execution occurs.
What is debugging?
The way in which to perform multiple line comments.
What is /*
*/?
What is syntax?
The operator known as modulo that calculates the remainder of a number.
What is %?
integer i = 0;
What is incorrect datatype? Should be int instead of integer.
The man who invented the C++ programming language.
Who is Bjarne Stroustrup?
Reason to instantiate your variables at assignment.
A program in a high-level language, before being compiled.
What is source code?
The binary operator that allows a shortcut for addition to a variable that has been instantiated.
include <iostream>
using namespace std;
What is forgot to include the pound sign before include? Should be #include <iostream>