What are the two different types of polymorphism?


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

Post New Answer

More OOPS Interview Questions

what is new operator in c++

1 Answers  


why c++ is a highlevel language

3 Answers   Satyam, Tech Mahindra,


What is ambiguity in c++

4 Answers   Accenture, Mphasis,


#include <string.h> #include <stdio.h> #include <stdlib.h> #include<conio.h> 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

0 Answers  


What are benefits of oop?

0 Answers  






What is difference between inheritance and polymorphism?

0 Answers  


What is constructor in oop?

0 Answers  


Write on signed and unsigned integers and give three (3) examples each

1 Answers  


What is the real life example of polymorphism?

0 Answers  


what is a class

6 Answers  


What is the advantage of oop over procedural language?

0 Answers  


Hi friends I have experience of 6 months in website design and maintanence. Now i am looking for other IT jobs.. to switch platform. please post any interview you know in chennai.

0 Answers  


Categories