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 does it mean when someone says I oop?

1063

What is the real time example of encapsulation?

1070

What is a class and object?

1055

What does sksksk mean in text slang?

2123

Why do we use class in oops?

966

What does and I oop mean in text?

1232

What is oops in simple words?

1101

What is the difference between static polymorphism and dynamic polymorphism?

1091

What is polymorphism in oop example?

1028

What exactly is polymorphism?

1132

Why is abstraction used?

1093

How does polymorphism work?

1144

What is the advantage of oop over procedural language?

1090

What is object and class in oops?

1072

What is difference between class and object with example?

1 1365


Post New OOPS Questions

Un-Answered Questions { OOPS }

What is class encapsulation?

1097


What does no cap mean?

1064


Which is not an object oriented programming language?

997


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

2206


Why do we use class in oops?

966


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

3763


What is pointer in oop?

1056


What is oops and its features?

1084


What is encapsulation c#?

1081


What are the 4 pillars of oop?

1151


• What are the desirable attributes for memory managment?

2234


Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)

2107


hi, this is raju,iam studying b.tech 2nd year,iam want know about group1 and group2 details, and we can studying without going to any instutions? please help me.

1955


What is a superclass in oop?

1177


Prepare me a program for the animation of train

2478