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

KBC Interview Questions
Questions Answers Views Company eMail

The branch of Botany which deals with the form of the plant is (a) Ecology (b) Histology (c) Physiology (d) Morphology

2 12468

The radiator in an electric room heater is most effective when it is (a) Painted black (b) Painted white (c) Highly polished (d) Painted red

1 11427

The first woman film star nominated to the Rajya Sabha was (a) Nargis Dutt (b) Shabana Azmi (c) Madhubala (d) Meena Kumari

9 73649

. Mahatma Gandhi was referred to as ‘the Father of the Nation’ first by (a) Jawaharlal Nehru (b) Vallabhbhai Patel (c) C. Rajagopalachari (d) Subhas Chandra Bose

13 45413

What are differences between Static Call and Dynamic Call?

10 28942

how to pass the opening stock entry & closing Stock entry in Tally ?

12 152403

ITI r/tv trade APPLY (J.T.O VACANCEY) ALSO INCLUD AITT ELECTRONIC,WRITEEN XAM DONE 23.03.10 BUT NO RESPONCE WHY ANATHER ID gopal_gh007@rediffmail.com

3462

what s the full form of GOOGLE and YAHOO?

211 954828

Post New KBC Interview Questions




Un-Answered Questions

What is java lang object?

1024


what is the probability of a complete system distortion under high end low performing multiprocessor job?

2515


The transaction code used to create a return delivery?

1057


What is the difference between dispose() and finalize()?

1066


Where will find the Variants?

1483


What is the Formula for coreletion coefficient in plhplc calibration

1880


Is scala easy to learn?

1


What is syswow64 rundll32 exe?

1286


Where is the windows recycle bin located?

915


Is swift based on objective c?

1


What is lightning data services?

576


What is point to point link?

474


What is binding (XML)?

952


What is tim?

879


You have given 2 array. You need to find whether they will create the same BST or not. For example: Array1:10 5 20 15 30 Array2:10 20 15 30 5 Result: True Array1:10 5 20 15 30 Array2:10 15 20 30 5 Result: False One Approach is Pretty Clear by creating BST O(nlogn) then checking two tree for identical O(N) overall O(nlogn) ..we need there exist O(N) Time & O(1) Space also without extra space .Algorithm ?? DevoCoder guest Posted 3 months ago # #define true 1 #define false 0 int check(int a1[],int a2[],int n1,int n2) { int i; //n1 size of array a1[] and n2 size of a2[] if(n1!=n2) return false; //n1 and n2 must be same for(i=0;ia1[i+1]) && (a2[i]>a2[i+1]) ) ) return false; } return true;//assumed that each array doesn't contain duplicate elements in themshelves }

3235