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

GE Healthcare Interview Questions
Questions Answers Views Company eMail

How many times the President of India can seek re-election to his post? a) Once b) 2 times c) 3 times d) Any number of times

7 19490

Post New GE Healthcare Interview Questions




Un-Answered Questions

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

3257


Name some of the design patterns used in spring framework?

154


State the difference pricing model of microsoft azure?

307


Can I install windows on my android phone?

430


When should you not use a type cast?

661






Why will you usually create an aspnet user account in the database for an asp.net web application?

541


Explain and give me an example of a time when you had to explain some new procedures to your co-workers for quality service delivery, how did you go about it?

2394


How can i execute PHP File using Command Line?

529


If both keywords and placements are added to the ad group, they would work together to?

1


What is non-maskable interrupts?

641


Can we delete column in sql?

563


Is java a prime method?

553


What is eloquent orm?

454


1.Which type of records maintaing for Hotels and provision Stores. 2.in Which type of returns we are going to file. tell me whos know brefiely,,

1541


Can combine control system for Emergency control system (ESD)and Fire & Gas System ( F & G) is possble to built and offer to client? Can such system is as per Norms in India?

1566