OOPS Interview Questions
Questions Answers Views Company eMail

define oops concept with example

Cap Gemini,

1 2544

Can anyone please explain runtime polymorphism with a real time example??at what ciscumstances we go for it??

1 3999

What Is a Polymorphism? How many types of polymorphism and whats that use in application?

2 3630

can inline function declare in private part of class?

1 3645

any one please tell me the purpose of operator overloading

Amazon,

1959

IN PROGRAMING LANGAUGE A C++ IS PURELY OBJECT ORIENTED OR NOT?

2 3862

to find out the minimum of two integer number of two different classes using friend function

1634

officer say me - i am offered to a smoking , then what can you say

1569

write a programe to calculate the simple intrest and compund intrest using by function overlading

1655

#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

2156

#include #include #include #include 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

2056

#include #include #include #include void insert(struct btreenode **, int); void inorder(struct btreenode *); struct btreenode { struct btreenode *leftchild; struct btreenode *rightchild; int data; }; main() { struct btreenode *bt; bt=(struct btreenode *)NULL; int req,i=1,num; clrscr(); printf("Enter number of nodes"); scanf("%d",&req); while(i<=req) { printf("Enter element"); scanf("%d",&num); insert(&bt,num); i++; } inorder(bt); } void insert(struct btreenode **sr, int num) { if(*sr==NULL) { *sr=(struct btreenode *)malloc (sizeof(struct btreenode)); (*sr)->leftchild=(struct btreenode *)NULL; (*sr)->rightchild=(struct btreenode *)NULL; (*sr)->data=num; return; } else { if(num < (*sr)->data) insert(&(*sr)->leftchild,num); else insert(&(*sr)->rightchild,num); } return; } void inorder(struct btreenode *sr) { if(sr!=(struct btreenode *)NULL) { inorder(sr->leftchild); printf("\n %d",sr->data); inorder(sr->rightchild); } else return; } please Modify the given program and add two methods for post order and pre order traversals.

3235

What is the difference between class and object?

Apple, Heinz,

4 5368

assume the program must insert 4 elements from the key board and then do the following programs.sequential search(search one of the elements),using insertion sort(sort the element) and using selection sort(sort the element).

1659

c++ program to swap the objects of two different classes

1749


Post New OOPS Questions

Un-Answered Questions { OOPS }

What is the important feature of inheritance?

624


What is difference between class and object with example?

554


Is oop better than procedural?

558


how to get the oracle certification? send me the answer

1654


i got a backdoor offer in process global,Bangalore..Can i work with it?

2316






What are oops methods?

559


What are the two different types of polymorphism?

664


What is new keyword in oops?

584


What is an interface in oop?

586


What is class in oop with example?

608


What is balance factor?

572


Why interface is used?

545


i=20;k=0; for(j=1;k-i;k+=j<10?4:3) { cout<

1409


Templates mean

1579


What is oops in simple words?

571