What is multiple inheritance?

Answer Posted / mayank kumar

in multiple inheritance there is more than one base class
and one derived class.

Is This Answer Correct ?    1 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

when to use 'mutable' keyword and when to use 'const cast' in c++

1911


What is the real time example of encapsulation?

820


What do you mean by overloading?

831


What is static in oop?

845


What is polymorphism in oop example?

772


any one please tell me the purpose of operator overloading

2190


What is interface? When and where is it used?

1922


What is oops with example?

797


What are the data types in oop?

848


#include #include #include #include void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort

2399


What is encapsulation oop?

829


What is encapsulation and abstraction? How are they implemented in C++?

888


what is the sylabus for priliminaries?

1939


Can destructor be overloaded?

823


what's the basic's in dot net

1955