Tuesday, October 09, 2018

Fall 2018 Mid Term Notes

1 comment:

Anonymous said...

25 questions
Multiple choice 80%
Blank 12%
true/false 8%
Open book, open note.
No trick questions

Page 9 - keys and points basics of how C++ works while compiling and developing
Page 22 chapter 1. Evolution of C++
Page 50-51- typecast converting
Page 53 String types
Page 69 incrementer and decrementer techniques.
Page 70-71 - same as above
Page 77 - look at the chart escape sequences
Page 125 - 128 cm and extraction operator
Page 133 - 138 peak, put back, ignore. Operations in general
Page 144 - 147 output, output formatting.
Page 152 - 153 fixed, set fill
Page 154 - 155, right left modulators
Page 189 relational operators. Difference between = vs ==
Basic things in chapter 4. Ifs, switch cases, syntaxis
Page 199 logic booleans. Not and or how they work. Examples in 200 - 201 he likes the tables
Page 207 compound block statements.
True or false a compound block statement acts the same as a single statement
True
Page 221 - 222 silent operators. = vs ==
Page 227 - 230 switch structures, differences in break. What's true what's false
Chapter 5 loops. do , while, for
while and for Is pre test
Do is post
Page 272 - while structure loop
Don't need to know types of loops
Page 298 starts the sentax on the for loop (look at structure)
Page 309 do while loop structures
Page 313 break in continue statements
Page 353 clear definition on the 2 categories of functions, void and value returning.
Page 356 Definition on return statements
True or false return can be an expression
true .
Page 361
Page 363 you can have more than one return, but will only take the right most.
Page 378 Definition to void functions
Page 379 examples from above
Page 380 parameter types
Page 386 reference values as parameters
Page 399 reference parameters and value functions * definitions*