Created by Rob Newman
about 8 years ago
|
||
What does a compiler do?
What happens to object files after they are compiled?
The three times that are important at the lifetime of a C++ program are?
What is the shortcut key to view an error in visual studio docs?
To put characters on the screen for the user to read you use Stream I/O. Explain Stream I/O?
C++ supports stream with I/O operators What are 2 operators and what do they do?
What is #include?
Variables in C++ hold information. A variable can only hold 1 particular type of information.
Variable can be user defined. Give 5 examples of variables.
True of false. Variables must be declared before they are used?
What are namespaces and what are they used for?
Declare a variable, initialize the variable then print out the variable.
Declare a float, initialize the float then print out the float
What is a function?
Write out a basic function?
Now call the function?
What is overloading?
Describe a c++ function?