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

Tech Mahindra Data Stage Interview Questions
Questions Answers Views Company eMail

what is the Difference Between Datastage Server Edition and Parallel Edition?

2 9205

how many datamarts we will use in real time project and when will use the datamart?pls send the replay early

2 8638

how many dimentions and fact tables used in your project and what are names of it?

3 8952

Hi this madan, in data stage one file in Empno 12345678910 in a table, i want target is  Empno 1                                2 3 4 5 6 7 8 9 10                                                                                             

5 9082

Post New Tech Mahindra Data Stage Interview Questions


Tech Mahindra Data Stage Interview Questions


Un-Answered Questions

Does interceptor capture ssl handshaking errors?

476


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

3230


Plz if anybody has placement paper of HAL mail me i m Chemical engg my id er.kotnala@gmail.com

2016


Explain what is an rdbms?

552


Is hibernate thread safe?

146






What is get set in c#?

550


How can we evaluate the effectiveness of advertising?

530


How do you make your decisions in general?

653


What is the Self & starter? what does it do in the in Genset

1737


To bind columns manually which tags do you need to add within the asp:datagrid ?

540


How to change the database engine in mysql?

442


How to upload a file in selenium webdriver?

514


What does the abbreviation dr mean in accounting?

624


Can we use slds directly in visualforce page? : salesforce lightning component

212


What is the equation for photosynthesis?

573