it is the keyword used to create a class
What is class?
If you want the items to be accessible outside the class you need this keyword
What is public:?
&&
What is AND?
You use this to read a line
What is getline() ?
This type of loop will always execute once.
What is a do-while loop?
We have to do this in order to use a class
What is instantiate?
You need this to specify members within a class
What is a dot operator?
&
What is a reference?
You need to include this when doing file I/O
What is #include <fstream> ?
if (expression) ... The expression must be of this type
What is boolean?
It is used to establish default values
What is a constructor?
A class can be thought of as custom __________
What is a data type?
*
What is a pointer?
Input file stream
What is ifstream ?
This takes our C++ code and translates it into machine language
What is a compiler?
It is a function inside a class
What is a method?
The class name should begin with this
What is a capital letter?
!
What is NOT?
Output file stream
What is ofstream?
This is an integer value that does not change
What is a const int ?
All members of a class default to this
What is private?
If a class member variable is private, you need to include this in order to retrieve or assign the value of the member
What is an accessor? (getter and setter)
==
What is equals (as a comparison) ?
This happens if you try to open a file to write to and it is not there
What is, it is created for you ?
This type of error does not come up until you run the program.
What is a logic error?
or What is an exception?