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 OOPS and How it is different from Procedural Programming ?

HP, Infosys, Thyrocare,

23 75890

what is meant by files?

Infosys,

4 10640

is java purely oop Language?

HCL, Infosys, TCS,

49 61249


What is Object and Class? What are the differences between them?

5 11383

What is Inheritance, Multiple Inheritance, Shared and Repeatable Inheritance?

Accenture, L&T,

4 20695

What is Method overloading?

5 10282

Can we call a base class method without creating instance?

6 23859

In which cases you use override and new base?

2 7806

You have one base class virtual function how will call that function from derived class?

4 9491

In which Scenario you will go for Interface or Abstract Class?

InfoAxon Technologies,

1 10746

polymorphism means?

BFL,

6 13929

Describe the difference between a Thread and a Process?

Siebel Systems,

11 33597

Describe what an Interface is and how it?s different from a Class.

Spinsys,

7 23678

What is the difference between XML Web Services using ASMX and .NET Remoting using SOAP?

1 9286


Post New OOPS Questions

Un-Answered Questions { OOPS }

What is difference between polymorphism and inheritance?

1091


write a code for this:trailer recordId contains a value other than 99, then the file must error with the reason ‘Invalid RECORD_ID’(User Defined Exception).

2158


What are benefits of oop?

1138


What is polymorphism what are the different types of polymorphism?

1014


What is difference between pop and oop?

1170


What is object in oop with example?

1248


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!!!)

2109


How do you define social class?

1071


What is class and object in oops?

1147


What is encapsulation process?

1054


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

3766


What is abstract class in oops?

1026


What is meant by multiple inheritance?

1266


What is polymorphism oop?

1067


Why is there no multiple inheritance?

1004