Computer Science - Object Oriented Programming Using C++

1.
You can use C++ as a procedural, as well as an object-oriented, language
True
False
Answer: Option
Explanation:
No answer description is available. Let's discuss.

2.
A default catch block catches
all thrown objects
no thrown objects
any thrown object that has not been caught by an earlier catch block
all thrown objects that have been caught by an earlier catch block
Answer: Option
Explanation:
No answer description is available. Let's discuss.

3.
Adding a derived class to a base class requires fundamental changes to the base class
True
False
Answer: Option
Explanation:
No answer description is available. Let's discuss.

4.
Format flags may be combined using
the bitwise OR operator (|)
the logical OR operator (||)
the bitwise AND operator (&)
the logical AND operator (&&)
Answer: Option
Explanation:
No answer description is available. Let's discuss.

5.
The use of the break statement in a switch statement is
optional
compulsory
not allowed. It gives an error message
to check an error
None of the above
Answer: Option
Explanation:
No answer description is available. Let's discuss.