q3:
What is false about the Scope Resolution Operator?
Group of answer choices ( select all correct answers)
Bob:: tells the compiler that each member function is within that class’s scope and its name is known to other class members
Time’s private data or call the class’s member functions, with specifying an object
With Jane:: preceding each function name, these functions would be recognized by the compiler as Jane member function
the compiler would consider them “free” or “loose” functions, like main—these are also called global functions
q5:
What is False about Overloading?
Group of answer choices ( select all correct answers)
The overloaded stream insertion operator (<<) is used in an expression in which the left operand has type ostream &, as in cout << classObject
The prefix and postfix versions of the increment and decrement operators can't all be overloaded
The prefix versions are overloaded differently as any other prefix unary operator would be
A unary operator such as ! may be overloaded as a non-member function with one parameter
q6:
What is true about Dynamic Memory?
Group of answer choices (( select all correct answers)
If new is able to find sufficient space in memory for the object, it indicates that an error occurred by “throwing an exception
The new operator allocates storage of the proper size for an object of type Time, calls the default constructor to initialize the object and returns a pointer to the type specified to the right of the new operator
To destroy a dynamically allocated object, use the delete operator
You can provide an initializer for a newly created fundamental-type variable