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

Gulf Industrial Services Company GISCO Interview Questions
Questions Answers Views Company eMail

How select ELCB for 32amp. socket having quantity 12Nos. We have to do this wiring in PLANT. Please Also explain the incoming cable specification.

1477

Post New Gulf Industrial Services Company GISCO Interview Questions


Gulf Industrial Services Company GISCO Interview Questions


Un-Answered Questions

How to Initialize Semaphores?

1108


Which of the listed is NOT a FlexiHopper frequency band? Which of the listed is NOT a FlexiHopper feature?

1512


What are the salient features of automation anywhere?

1


What is dynamic scheduling in operating system (os)?

586


How do you describe your Salesmanship Style?

1940






sir, i have completed engineering diploma in electronics and now got the call letter for written exam for the post "junior engineer" from rrb chennai. could you help me about the model and type of questions that i should prepair?

1724


Explain the difference between open_form and close_form?

537


What is cloud security?

548


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

3235


How one can format Hadoop HDFS?

29


What is Flyout Design Pattern in .NET?

633


Is it possible that a workflow call itself in data services job?

90


How can you run a linux program in the background simultaneously when you start your linux server?

595


What are Peplos?

5


What is jsp api?

476