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

ICICI Placement Papers Interview Questions
Questions Answers Views Company eMail

ICICI PLACEMENT PAPERS -- Placement Paper 1

2 15935

Wipro Placement Papers - 23 JUL 2006 - Placement Papers

2 20642

ICICI Placement Paper - 2006

2 20270

Deputy Manager (IT) PNB

73 84259

icici

1 9684

Post New ICICI Placement Papers Interview Questions


ICICI Placement Papers Interview Questions


Un-Answered Questions

What are the key functions you can perform under forecasting & replenishment process?

446


Can wildcards be used in authorizations?

1205


When did solar system come into existence?

141


Can postgres use multiple indexes?

846


what is the use of the circle diagram

5624


Hi SD Gurus, Have you generated any customized Pricing Reports for your client? If you have done then list out all the customized Pricing Reports for your client? Please do not attach much importance to theory and do concentrate more on Business Scenario where in the client was insisting on customized reports rather than Standard Pricing reports? Give detailed Configuration& Customization Procedure, steps, Path, T-codes (if any), Analysis, logic & finally solution to your Client’s requirement along with detailed explanation? Please give solutions with reference to your real time data examples from your client/ Project? This question related to Pricing is most important as it is being asked more frequently in many Interviews? I have interview within 1-2 days? So, I request you to provide solutions to above question as early as possible? Your timely help would be greatly appreciated? Thanks in advance Regards

1990


During a recent team meeting, you reached a resolution to a problem that's been troubling the team for several weeks. You took responsibility for searching out the facts of this problem and uncovered the right answer to this problem. You presented the facts at the project status meeting, and everyone reached agreement on the recommended solution based on the facts you presented. This is an example of what type of conflict resolution technique? A. Compromise B. Smoothing C. Confrontation D. Forcing

1561


Do you know what are the elements used in customizing the output of using the standard decorators?

215


What is the difference between SELECT and LOAD statements?

3


Can I create a flat file from an IDOC? If Yes , How?

1032


What is urlconf in django?

583


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

3770


What linux do hackers use?

944


If a system goes blank, how do you debug it?

1974


How many ways can you insert a table into a document?

580