What is the point of polymorphism?


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

Post New Answer

More OOPS Interview Questions

if u write a class do u write Assignment operator and copy constructor

1 Answers   Siemens,


Why multiple inheritance is not possible?

0 Answers  


What is extreme programming?

2 Answers  


What is the renewal class?

0 Answers   Ebix, IBM,


write a progra in c++ using class & object to find out wheather a given no. is prim or not.

2 Answers  






What is the use of unnamed namespaces in OOPS? The only advantage I know is that they dont need the scope resolution operator while accessing them. I want to know some other advantages of unnamed namespaces...

2 Answers  


what is the use of template classes in c++

1 Answers  


What does enum stand for?

0 Answers  


What are virtual classes?

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 sub classing in c++?

1 Answers  


How long to learn object oriented programming?

0 Answers  


Categories