Computer Science - Object Oriented Programming Using C++

36.
Which of the following is(are) invalid string constant(s)?
'7.15 pm'
"i like e"
"7.3el2"
"1234el2"
None of the above
Answer: Option
Explanation:
No answer description is available. Let's discuss.

37.
You define a structure type globally because _____
you save many lines of code by not rewriting an identical structure definition in each function that uses it
you will never change its definition
it is required in C++
All of the above
Answer: Option
Explanation:
No answer description is available. Let's discuss.

38.
Overloaded functions are required to
have the same return type
have the same number of parameters
perform the same basic functions
None of the above
Answer: Option
Explanation:
No answer description is available. Let's discuss.

39.
Redirection redirects
a stream from a file to the screen
a file from a device to a stream
a device from the screen to a file
the screen from a device to a stream
Answer: Option
Explanation:
No answer description is available. Let's discuss.

40.
You mark the beginning of a function's block of code with the _____
/
*
{
}
either (c) or (d) can be used
Answer: Option
Explanation:
No answer description is available. Let's discuss.