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

Wipro Operating Systems AllOther Interview Questions
Questions Answers Views Company eMail

Virtual memory size depends on [a] address lines [b] data bus [c] disc space [d] a & c [e] none

15 35771

Dear All, When the patches are installed in the server OS, how will we know that which patch is the latest patch?

2218

1) What is an Virtual memory? 2) How do we test API's in both Windows/Linux/Unix? 3) What is an IOCTL? 4) How do you open a char device through API's? 5) What is major num/ minor num? 6) What is the max num for minor num? 7) Who gives you the major / minor numbers? 8) Reverse a string using recursive func. 9) fork/vfork/clone. 10) What does fork returns? 11) What is a zombie process? 12) What happens when a child completes before parent tries to wait for it? 13) Interrupt handlers, top-hdnl....?

2471

discuss the procedures to evaluate disk excess time

2595

Post New Wipro Operating Systems AllOther Interview Questions


Wipro Operating Systems AllOther Interview Questions


Un-Answered Questions

What is web router?

933


Magnetostriction is a phenomenon whereby the magnetisation of a ferromagnetic material leads to a change in

1070


How to open a link in new tab or window?

937


Explain the difference between exchange 2003 and windows 2003?

908


Explain .net mobile input controls? : Microsoft dot net mobile

929


What is the use of 0 in c#?

1029


What is difference between list and set in python?

874


Can you nest updatepanel within each other?

980


Which monkey has the biggest nose?

1076


Explain how many more times louder is 70 decibels than 10 decibels?

915


Why should you consider yourself fit to be hired by JSPL? (max 200 words)jindal steel & power ltd

11065


Why is it desirable to create an additional commit rather than amending an existing commit?

1


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

3773


What is ngfor in angular?

839


What is adabas?

1028