What is a custom exception?
Answer / nashiinformaticssolutions
A custom exception is a user-defined exception class derived from std::exception.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is tellg () in c++?
What is binary object model?
what is data abstraction in C++?
What is data type in c++?
When should I use unitbuf flag?
What is the word you will use when defining a function in base class to allow this function to be a polimorphic function?
class professor {}; class teacher : public virtual professor {}; class researcher : public virtual professor {}; class myprofessor : public teacher, public researcher {}; Referring to the sample code above, if an object of class "myprofessor" were created, how many instances of professor will it contain? a) 0 b) 1 c) 2 d) 3 e) 4
Explain about Garbage Collector?
How is modularity introduced in C++?
How do you define/declare constants in c++?
The "virtual" specifier in a member function enables which one of the following? a) Monmorphism b) Late binding c) Metamorphism d) Solomorphism e) Inheritance
Describe the advantage of an external iterator.