What are the different forms of polymorphism??

Answer Posted / purba phalguni mishra

(1). Operator overloading.
(2). Function overloading.
(3). Virtual functions

Is This Answer Correct ?    11 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How is class defined?

823


what's the basic's in dot net

1920


What is ambiguity in inheritance?

840


What is polymorphism programming?

843


#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

2374


What are the 4 pillars of oop?

884


What is destructor give example?

810


What is a class oop?

754


What is the purpose of polymorphism?

872


What is the example of polymorphism?

743


Write a program to implement OOPS concepts such as inheritance, polymorphism, friend function, operator overloading?

4469


What are the features of oop?

831


What does and I oop and sksksk mean?

863


write a C++ program for booking using constructor and destructor.

2265


Why multiple inheritance is not allowed?

807