In addition to the material presented in Chapter's 1-3 of the textbook you may wish to look over Dale Haverstock's online notes:
![]() |
Getting Started |
![]() |
Flow of Control - Basic |
![]() |
Variables |
![]() |
Expressions |
![]() |
Using Functions |
![]() |
I/O |
You can also refer to the C/C++ Reference guide at http://cppreference.com/ or you may wish to go through thei Introduction, Basics of C++, and Control Structures parts of the online tutorial available at http://www.cplusplus.com/doc/tutorial/
Be able to answer questions such as a "What is", "Describe", "Explain", etc. or be able to write important information about each of the following
main function int,
char,
long,
double,
float,
bool
using namespace std,
using std::cout,
std::cout
in a program You may be given a snipet of code to execute by hand and explain or you may be asked to write code relating to the items below
if, if/else while loops bool values to/from integer values ++,
--,
+,
-,
*,
/,
%,
<<,
>>,
=, and assignment operators <,
<=,
>,
>=,
==,
!= +=,
-=,
*=,
/=,
etc., writing, executing, rewriting as assignment with operation