What is multiple inheritance ?
Answer Posted / raj
one derived class with several base class.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
There are two base class B1,B2 and there is one class D which is derived from both classes, Explain the flow of calling constructors and destructors when an object of derived class is instantiated.
What is abstract class in oops?
What is polymorphism explain?
How Do you Code Composition and Aggregation in C++ ?
write a program that takes input in digits and display the result in words from 1 to 1000
How to hide the base class functionality in Inheritance?
What is object and example?
assume the program must insert 4 elements from the key board and then do the following programs.sequential search(search one of the elements),using insertion sort(sort the element) and using selection sort(sort the element).
Which is better struts or spring?
They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?
design a c++ class for the chess board,provide a c++ class definition for such class(only class definition is required)
what type of question are asked in thoughtworks pair programming round ?
what type of questions
What is encapsulation and abstraction? How are they implemented in C++?
Following are the class specifications: class {int a}; class {int b}; Using friend funtion,calculate the max of two objects and display it.