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 Database Management Interview Questions
Questions Answers Views Company eMail

What are ACID properties?

11 24662

1. How many nodes you are using project? 2. What is configuration file? 3. What is modules partition? How it is work in project? 4. What is Environment Variable? How it is use? 5. What is sequence? 6. How do you execute parallel jobs in projects? 7. If you run a job in job sequencer individually without any comments? 8. How many jobs did in your project? 9. How to schedule the job in Data stage 7.5 X2? 10. If you have 10 jobs in PX2, shall you run all jobs at a time? 11. I have 5 jobs (1-5), I connect with each other, but I want to run from 3-5 only how? 12. What is same partition? 13. If you have 40GB hard disk in I have 30GB data how I configure the nodes for partition? 14. Did you write any code for Data stage project? 15. Did you write any code for parallel job execution in your project? 16. Will you schedule all jobs at a time?

1316

Post New Cap Gemini Database Management Interview Questions


Cap Gemini Database Management Interview Questions


Un-Answered Questions

List the types of joins used in writing subqueries?

547


Describe synchronization point.

551


Is ios based on linux or unix?

407


What are the key differences between angular expressions and javascript expressions?

422


What is form method?

473






Explain the construction of the conservator, operation and purpose, and draw the diagram of the conservator.

1995


Write syntax to define friend functions in C++.

575


what is the prosses for getting of 33kv licence (i have completed my engineering degree & working in 33kv substation for contract basis )????

1369


How do you download a minecraft server?

468


we had company we provide work others they deducted tds how to pass entries in my company please tell me

2732


Payables Applications Technical Reference Manual

2001


At the point, you should go for struts framework?

519


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

3211


Which splunk roles can share the same machine?

131


Can you explain recommender system?

95