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
How do you define social class?
Can destructor be overloaded?
write a code for this. serial_number contained in the header of the file will be read , if this serial number is less than a previous serial number within a successfully processed file, or is the same as another serial number within a successfully processed file, or if the field contains anything other than 7 digits, then the file must error with the reason ‘Invalid SERIAL_NUMBER’.
What is the real time example of inheritance?
What is difference between abstraction and encapsulation?
Prepare me a program for the animation of train
What is meant by oops concept?
What is the point of polymorphism?
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?
write a programe to calculate the simple intrest and compund intrest using by function overlading
Explain the concepts involved in Object Oriented programming.
write a program using c++ to implement single contiguous memory mangement techniques.display the content of the main memory after yhe allocation of jobs and percentage of the wastage of the main memory
Which is not an object oriented programming language?
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
What polymorphism means?