Why polymorphism is used in oops?


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

Post New Answer

More OOPS Interview Questions

How do you achieve runtime polymorphism?

0 Answers  


Can we override main method?

0 Answers  


why c++ is called OOPS? waht is inherutance? what is compiler?

5 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  


write a program to find 2 power of a 5digit number with out using big int and exponent ?

0 Answers  


How do you achieve polymorphism?

0 Answers  


different types of castings

3 Answers   Siemens,


Why is there no multiple inheritance?

0 Answers  


why the argument is passed by reference to a copy constructor?example?

2 Answers  


what is the basic concept of inheritance?

9 Answers  


what is the definition of incapsulation

2 Answers  


Explain polymorphism? What r the types of polymorphism? pls give examples?

4 Answers   HCL,


Categories