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

eClerx Interview Questions
Questions Answers Views Company eMail

Tell me about yourself?

229 548876

Queries for Big4 Articleship : Whether son of CA in practice effects chances.

6932

A company charity (gross income 2192


What is run time polymorphism?

6 18538

what is debentures

31 74432

What is RunTime Polymorphism?

5 28333

What is your area of interest?

1 24440

whats Derivative?

15 29839

How can i treat the tds in the Books of Deeductee. Example suppose my company recives an amount on Job work charges by giving tds to a deductor company. Then will i creat it under tax and liability ledger or other.

4 12518

What is Finance Function

6 23058

pointer_variable=(typecasting datatype*)malloc(sizeof(datatype)); This is the syntax for malloc?Please explain this,how it work with an example?

2 9248

Define each Flexfeild qualifiers (natural accounts, balancing acc., secondary tracking, cost center)

2019

present i am studying mba but basically i am from science background i completed my graduation with bsc.biotechnology wat to say for question why you change your stream ? how can fulfill the requirements of job?

1 3413

What is the difference between equity shares & preferred shares?

10 26213

If today is Saturday what day will it be from 500 days?

7 18408

Post New eClerx Interview Questions




Un-Answered Questions

Is string data type in c++?

978


Hi All, Can any body Explain the End to End Flow of Product Costing in SAP with Integration Point and Journal Entries Involved in the Flow ?

1904


Do you think digital marketing will replace traditional marketing practices in the near future?

430


What is a substring of a string?

1088


Why box sizing border box is used?

644


What is Noise?

1257


how a DPAD converts voltage to current?

2275


What is ip pool range?

352


How do I create a rest api spring boot? : Spring Boot

413


Which programming language is best for desktop applications?

879


Define what happens to the series current , load current and zener current when the dc input voltage of a zener regulator increases?

1149


List out the some common problems faced by data analyst?

381


What is open client in sybase?

810


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

3704


What is Cross Site Request Forgery and how to defend against it?

980