Object Oriented Programming Using C Plus Plus - Study Mode
[#486] When you define an object that is a member of a class, such as Student Abby
_____
Correct Answer
(B) a block of memory is set aside
[#487] A function that is prototyped as double calculate(int num)
may______
Correct Answer
(C) either (a) or (b)
[#488] The general form of do-while statement is
Correct Answer
(C) do statement while (expression)
[#489] Student senior()
is a(n)_________
Correct Answer
(D) prototype for a function that returns a student object
[#490] The statement int n[4] = {11, -13, 17, 105}
Correct Answer
(B) assigns the value 17 to n[2]