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

Value Labs Interview Questions
Questions Answers Views Company eMail

Two trains 200 miles apart are traveling toward each other along the same track. Two trains have the same speed 100MPH. A bee is hovering just above the nose of the first train. It buzzes from the first train to the second train, turns around immediately, flies back to the first train, and turns around again. It goes on flying back and forth between the two trains until they collide. If the bee's speed is twice the speed of two trains, how far will it travel?

1 13066

In a class 80% have passed in English, 70% passed Hindi, 10% didn't pass either. If 144 students passed both the subjects. What is the total strength of the class?

3 12228

Post New Value Labs Interview Questions


Value Labs Interview Questions


Un-Answered Questions

Why is not creat swap partition in my system.

1824


What is app.iml/ directory?

986


Explain on which technology does xws security is based on?

754


What is the use of dynamic match type?

389


How do I join one form to another in c#?

979


What criteria should we use to evaluate an sem vendor?

930


How to generate it on homestead?

852


Explain different types of segment?

1089


What resistance the ship encounter when the vessel is at sea

2110


What is fo file format?

900


How Many Computers Can Share a WiFi Network?

1500


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

3830


Do you know what is lambda in python?

1089


Explain me what the difference is between false and nil in ruby?

1


What's the difference between impact sockets and regular sockets?

904