STL (140)
OOPS (873)
C++ General (2409) How do you invoke a base member function from a derived class in which you’ve overridden that function?
1107If horse and bird inherit virtual public from animal, do their constructors initialize the animal constructor? If pegasus inherits from both horse and bird, how does it initialize animal’s constructor?
1205If a base class declares a function to be virtual, and a derived class does not use the term virtual when overriding that class, is it still virtual when inherited by a third-generation class?
1030
Differentiate between a copy constructor and an overloaded assignment operator.
How is objective c different from c++?
Explain how to initialize a const data member.
How can a struct in c++ differs from a struct in c?
What is the outcome of cout< a) 16 b) 17 c) 16.5
What do you mean by function overriding & function overloading in c++?
Explain about Virtual Function in C++?
What parameter does the constructor to an ofstream object take?
Inline parameters : What does the compiler do with the parameters of inline function, that can be evaluated in runtime ?
What are the benefits of interface?
What is a v-table?
What is size_type?
write a program to enter a string like"sunil is a good boy and seeking for a job" not more than 10 characters including space in one line,rest characters should b in other line.if the next line starts from in between the previous word,then print whole word to next line.
Do we have to use initialization list in spite of the assignment in constructors?
What is a class in oop?