What is polymorphism what is it for and how is it used?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More OOPS Interview Questions

What is polymorphism oop?

0 Answers  


Why do we use inheritance?

0 Answers  


What are classes oop?

0 Answers  


Why is there no multiple inheritance?

0 Answers  


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

0 Answers  






what is code for call by value and call by reference?

1 Answers  


what is polymorpsim? what are its types?

8 Answers  


How to call a non virtual function in the derived class by using base class pointer

3 Answers   HCL,


What is the difference between encapsulation and polymorphism?

0 Answers  


Write a program to multiply 3x3 matrics

1 Answers  


Why do we need polymorphism in c#?

0 Answers  


What is methods in oop?

0 Answers  


Categories