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

Wipro SAP ABAP Interview Questions
Questions Answers Views Company eMail

foreign key enforcement?

1632

what is meant by maintenance allowed(if it can provide authorization, what is authorization)

2 6728

say in selection screeen (ie is in select-options) i have selected record range from 1000 to 2000 but in the final display list i sholud not get 1200 to 1300 records it should be hide how is it posible

2 7690

what happens if i use commit in the bdc coding

2 7103

how can u write in single program call transaction and session method logic? if u

2 7817

how we can take a file from Presentation server to Application server?

6 22464

difference between user exit and customer exit dont tell both are same but there is another difference is there if anybody knows reply immediately

7 16920

can u save internal table in sap memory from abap memory?

7 36056

in bdc which method is suitable for back ground processing?

4 10983

can you call a bdc program from report program?

1 10653

can you create a script with out a main window?

6 9878

how to send smart form result though mail?

3 10456

if u write a write statement after end of selection ,will that be triggered?

2 14925

what r the main events that r used in alv?

3 13448

u r running a report .it is taking a long time for execution .what steps will u do to reduce the execution time?

4 11693

Post New Wipro SAP ABAP Interview Questions


Wipro SAP ABAP Interview Questions


Un-Answered Questions

What is the order of defining local variables and sub procedures/functions?

608


What is super constructor?

556


Difference between Array and List in Scala?

7


What does a server do?

791


How many parameters can a method have c#?

491






What is while true in python?

443


How do I install linux on a hard drive?

415


What is the main purpose of a process definition document (pdd)?

133


How to show reject material in ER1

1251


What are the steps in the instantiation of a template?

486


What are the steps to insert picture from a file?

317


Difference between sandbox and developer organization?

207


What are the linked universe?

61


how to design the heater in temperature control unit to heat 50KL of water?

1436


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

3261