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 75863

what is meant by files?

Infosys,

4 10634

is java purely oop Language?

HCL, Infosys, TCS,

49 61182


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

5 11379

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

Accenture, L&T,

4 20693

What is Method overloading?

5 10272

Can we call a base class method without creating instance?

6 23852

In which cases you use override and new base?

2 7805

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

4 9487

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

InfoAxon Technologies,

1 10746

polymorphism means?

BFL,

6 13920

Describe the difference between a Thread and a Process?

Siebel Systems,

11 33586

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

Spinsys,

7 23671

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

1 9283


Post New OOPS Questions

Un-Answered Questions { OOPS }

explain sub-type and sub class? atleast u have differ it into 4 points?

2317


Which type does string inherit from?

1106


What is Difference Between Inheritance and creating object and getting data? means Class A extends B{ B.getMethod();} (OR) Class A{ b obj=new B(); obj.getMethod(); }

2611


What is balance factor?

1079


What is destructor oops?

1098


is there any choice in opting subjects like 4 out of 7

2188


what type of question are asked in thoughtworks pair programming round ?

2219


Prepare me a program for the animation of train

2478


What is methods in oop?

981


What is overloading and its types?

1175


Write A Program to find the ambiguities in Multiple Inheritance? How are they resolved.(Virtual Functions)

4151


#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 the difference between encapsulation and polymorphism?

1112


What is Difeerence between List obj=new ArrayList(); and ArrayList obj=new ArrayList()?

2540


What is static modifier?

1226