Answer Posted /

Is This Answer Correct ?    Yes No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

3Cx240 & 3Cx300 sqmm Al. cable from lv side. What is the calculation for this cable??

903


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 }

2724


How does mongodb provide consistency?

5


Define a class and an object?

563


What is tld in jsp?

493






State Disadvantages of Apache Kafka?

327


Is it possible to create multiple versions under a model in scm?

154


How can I Proceed to my client regarding Advertisement Bill as we are dealing in advertising agency and also clear us can we deduct TDS on their bill? For Example we receive a bill from The Sandesh Ltd. of Rs. 50000/- and they do not mention service tax in the bill. So, Kindly provide the Guidelines regarding This Problem.

1594


What is css box model and also explain its elements?

280


Draw the equivalent circuit of ujt.

725


What is the use of decodeuri() and encodeuri()?

507


What is a tomcat service?

449


pls send me the syllabus questions on rrb section engineer (telecom)

1968


what is woransient key word? how it is used in java

1810


hi,am sitting for amptitude tests for intern position.please send me question to guide me in revisin

2036