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

Company Name Starts with ...
#  A  B  C  D  E   F  G  H  I  J   K  L  M  N  O   P  Q  R  S  T   U  V  W  X  Y  Z

IBM GATE Interview Questions
Questions Answers Views Company eMail

Graduate Aptitude Test in Engineering ( GATE ) Question Paper - 2002 COMPUTER SCIENCE & ENGINEERING

2 13135

a guy hired 5 men to work on a project and they completed the job in 13 days. IF, on the 4th day, 2 men resigned, then how long would they complete the job?

1 3287

Can anyone solve this series 22,44,88,176,?,1595

4 20091

Post New IBM GATE Interview Questions


IBM GATE Interview Questions


Un-Answered Questions

What is the mean of "email deliver-ability and email open rates"?

506


What is abstract class in c++?

1069


What is Load sharing of Transformer ?

2042


What will be the QA roles and responsibilities in Health care stream like BCBS,can someone please explain me any example project regarding health care services in web-based application?

2228


What is s4 generic?

79


What are all the operating system that python can run on?

841


Tell me can a pointer be volatile?

896


How do I check chkdsk results windows 7?

920


I have deducted Notice pay Rs. 5000/- in which account to be booked the same enty, what is the head for notice pay in profit and loss a/c.

2048


What does the VARIABLE_SCREEN URL parameter do?

2349


what is the difference between hashed & sorted internal tables?

2230


sir, I wanted to know what is the difference between cash and cheque payment in terms of tax.

3590


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

3780


Explain different ways to run ae, sqr?

711


What are the methods of bean life cycle?

542