Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

OOPS Interview Questions
Questions Answers Views Company eMail

What is the difference between inheritance and polymorphism?

1110

What is polymorphism and its types?

1063

What is oops concept with example?

1011

Can a destructor be called directly?

1071

What is the purpose of polymorphism?

1122

How do you achieve polymorphism?

1075

What is the use of oops?

1059

Can destructor be overloaded?

1029

What is polymorphism explain its types?

1158

What is the difference between a constructor and a destructor?

1256

What are the features of oop?

1171

What is the significance of classes in oop?

1146

What is difference between abstraction and encapsulation?

1072

What is oops?what is its use in software engineering?

1030

What are classes oop?

1018


Post New OOPS Questions

Un-Answered Questions { OOPS }

Plese get me a perfect C++ program for railway/airway reservation with all details.

3896


when to use 'mutable' keyword and when to use 'const cast' in c++

2159


Is html an oop?

1059


What is a class oop?

1002


What is oops with example?

1044


What is the highest level of cohesion?

1045


write a C++ program for booking using constructor and destructor.

2539


What are the advantages of polymorphism?

1027


Write a java applet that computes and displays the squares of values between 25 and 1 inclusive and displays them in a TextArea box

2613


Why is polymorphism important in oop?

1077


What is meant by oops concept?

1038


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

3756


What is the purpose of polymorphism?

1122


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

2841


Why do we need polymorphism in c#?

1164