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

When a private constructer is being inherited from one class to another class and when the object is instantiated is the space reserved for this private variable in the memory??

HCL, Honeywell,

13 22440

how to create thread in java?

IBM, Infosys, Wipro,

17 23925

Difference between over loading and over ridding?

CTS, Patni, Softvision Solution,

12 28031

what is virtual function?

Aspire, HP, Infosys, RoboSoft, TCS,

26 62392

pointers are support in C#? if yes then how to use it?

Softvision Solution,

8 12734

What is command routing in MFC

GE,

1 8077

what is new modifier in C#

HCL,

8 13792

what is the difference between and "stdio.h"?

5 10494


Explain the concept of abstracion and encapsulation with one example. What is the difference between them?

PCS,

3 12618

What are the different forms of polymorphism??

Mantaq, NUC, PCS,

8 16242

all about pointers

2 6241

what is diff between .net 1.1 and .net 2.0

4 10627

What is Agile methodology?

ABC, Accenture, College School Exams Tests, Inmar, Microsoft, Sapient,

20 198033

What is extreme programming?

2 8288


Post New OOPS Questions

Un-Answered Questions { OOPS }

What are functions in oop?

1052


Write a program to reverse a string using recursive function?

2339


class type to basic type conversion

2404


What is property in oops?

1061


What is encapsulation oop?

1039


What is an advantage of polymorphism?

1095


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

3758


if i have same function with same number of argument but defined in different files. Now i am adding these two files in a third file and calling this function . which will get called and wht decide the precedence?

3518


What is debug class?what is trace class? What differences are between them? With examples.

2191


What is inheritance in oop?

1033


what is the drawback of classical methods in oops?

3381


What is byval and byref? What are differences between them?

2212


What is polymorphism what is it for and how is it used?

1016


i am getting an of the type can not convert int to int *. to overcome this problem what we should do?

2320


What do you mean by overloading?

1067