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

Cap Gemini Interview Questions
Questions Answers Views Company eMail

What is I-Base? What is I-Base category?

1 4031

What is E-CAT?

1 9562

What is LSMW?

5 11274

What are adaptors?

2343

What is BDocs?

2991

What is application builder?

2222

How did you customize IC for service project?

2915

What Business Roles did you configure? Profiles used?

1 4729

Which all profiles did you use?

2034

How to activate/deactivate work centers?

1 10201

What are Logical Links? Where do you adjust them?

3 8657

What is Master Data? What is it used for?

5 9852

What is territory master data?

1 7770

what is bdoc?bdoc types?how to find bdoc error cheak?how to monitoring? how to bp replicate ecc to crm?how to cheak bp replication? what is the diference between inbound vs outbound queues? what is middleware configure settings? what is the delta download,how to process? what is the difference between intialload vs delta download? what is site?site,publication,subscription diferences? what is the difference middleware coakpit vs trace? what is the middleware parameters?how many types and diferences?

7020

1. Credit Control Area can be mapped to Sales Area and Company Code. To which systems gives priority? 2. Whether Credit Memo request will be generated only when Rebate agreement tgt amount is achieved? 3. How to have different Pricing procedure for a Billing Doc and Credit Memo Request? 4. Credit Memo request to Credit Memo: what are the accounting entry changes? 5. Copy Control: Significance of Assignment option? 6. One time customer: How system will react while creating Order using one time customer?

2508

Post New Cap Gemini Interview Questions


Cap Gemini Interview Questions


Un-Answered Questions

What is sql used for?

1126


how to test reports in cognos?

1028


What is difference between xcode and swift?

932


What if impurity area in control sample coming more as compared to LOQ level of impurity ?

1601


Difference between object and reference?

1179


What do you mean by keywords in c?

1154


Why is java used?

921


What are the different types of object relations in salesforce?

537


Describe the types of sub query?

999


Mention the various categories of lead ?

1037


How to reverse a string in java?

1084


Are bad sectors repairable?

906


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

3767


What are expert systems limitations?

960


wht type of User defined functions or Java Releated functions Do we write in VB scripting

1806