Tuesday, April 23, 2019

Notes for Final Exam Spring 2019

1 comment:

Jared803 said...

Chapter 1)
Bits & bytes pg 6
C++ evolved from C. Pg 22

Chapter 2)
Arithmetic operators,
Static cast pg 50,
Data types,
Incrementor and decrementors pg 69, \n \t \\

Chapter 3)
Input failure pg 130,
Cin get pg 133,
Cin ignore pg 134,
Putback and peek pg 136,
Fixed manipulator pg 145,
Showpoint pg 146,
Setfill pg 152 & 153,
Right and left manipulator pg 154.

Chapter 4)
Boolean operators and logical expressions pg 199,
Silent killer (= instead of ==) pg 222,
Switch structure pg 227.

Chapter 5) for loops pg 298,
For loop is pretest loop and do while is post test loop,
Do while loops pg 309.

Chapter 6)
Functions: value return pg 356.
If a return has multiple expressions ie return 2,3,4,5,6 only the last number will be returned pg 363,
Function parameters pg 361,

Chapter 7)
Enumeration type pg 475,
String type manipulation pg 493,
Substr manipulation pg 503

Chapter 8)
Arrays pg 528,
String array manipulation pg 553,
2D arrays pg 562

Chapter 9)
Struct assignment pg 617,
Structs in arrays pg 623,
Structs within structs pg 624,

Chapter 10)
Classes pg 652,
Accessing class members pg 657,
Private and public members of class pg 670,
Class constructors pg 671,
Class destructor pg 681,
Abstract data type pg 682,
Struct vs class pg 684,