You've got class!
More Class
Symbols
I/O-ta
Long ago in a galaxy far away
100

it is the keyword used to create a class

What is class?

100

If you want the items to be accessible outside the class you need this keyword

What is public:?

100

&&

What is AND?

100

You use this to read a line

What is getline()  ?

100

This type of loop will always execute once.

What is a do-while loop?

200

We have to do this in order to use a class

What is instantiate?

200

You need this to specify members within a class

What is a dot operator?

200

&

What is a reference?

200

You need to include this when doing file I/O

What is   #include <fstream>  ?

200

if (expression)  ...  The expression must be of this type

What is boolean?

300

It is used to establish default values

What is a constructor?

300

A class can be thought of as custom __________

What is a data type?

300

*

What is a pointer?

300

Input file stream

What is ifstream ?

300

This takes our C++ code and translates it into machine language

What is a compiler?

400

It is a function inside a class

What is a method?

400

The class name should begin with this

What is a capital letter?

400

!

What is NOT?

400

Output file stream

What is ofstream?

400

This is an integer value that does not change

What is a const int ?

500

All members of a class default to this

What is private?

500

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)

500

==

What is equals (as a comparison) ?

500

This happens if you try to open a file to write to and it is not there

What is, it is created for you   ?

500

This type of error does not come up until you run the program.

What is a logic error?

or What is an exception?