Computer Science - Object Oriented Programming Using C++

46.
To include the double quotes as part of the control string we use the symbol
%"
""
\"
#
None of the above
Answer: Option
Explanation:
No answer description is available. Let's discuss.

47.
A C++ statement must end in a
: (column)
, (comma)
. (period)
; (semicolon)
Answer: Option
Explanation:
No answer description is available. Let's discuss.

48.
Student senior(); is a(n)_________
constructor call with no arguments
object instantiation
constructor call with all default arguments
prototype for a function that returns a student object
Answer: Option
Explanation:
No answer description is available. Let's discuss.

49.
The statement int n[4] = {11, -13, 17, 105};
assigns the value -13 to [2]
assigns the value 17 to n[2]
is wrong; it gives an error message
assigns the value 18 to n[2]
Answer: Option
Explanation:
No answer description is available. Let's discuss.