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

First Advantage Interview Questions
Questions Answers Views Company eMail

why do you left your previous job?

42 79853

what is data Abstraction? and give example

147 263537

Post New First Advantage Interview Questions




Un-Answered Questions

How many test cases have you automated per day?

551


when we are importing items in inventory, showing errors, Oracle support suggested us for running scripts & also suggested if we run scripts, iprocurement applicaation if is there it will show shared and if we go in future for iprocurement, it wont work. So kinldy suggest any functional solution.

1467


What are the steps required to setup the oracle instance for os authentication?

561


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

3241


Explain what are the universal logic gates?

608






What is the the total addressable memory size in a 8085 microprocessor?

582


What is the index?

506


What are the advantages of vscf wind electrical system?

628


The members a,b,12 forma geometric progression and the nos a,b,9 form an arithmetic progression. find the value of a+b

646


Can we call a batch apex program in apex trigger ?

235


Do all vascular plants develop annual rings?

543


What are interceptors in struts 2?

578


Why are recursive relationships bad? How do you resolve them?

284


Will silverlight support digital rights management?

1


Do you have any idea about gst?

618