Post New GPIL SAP PP (Production Planning) Interview Questions
Why should we hire you over the others waiting to be interviewed?
How can you configur the log cleaner?
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;i
Explain indexed views and partitioned view with their syntax.
Explain counter current immuno electrophoresis?
I am getting above 60 V as open delta voltage against single phase unit ICT at tertiary delta formed and ICT getting trippped on NDR. ICT tested and found in order. PTs provided on tertiary are tested and in order. what may be the reason?
What is a column in computer?
What adjustments will you have to make in transitioning from the private sector to the public sector?
Consider this scenario, I have an activity in ruleset a and I want to call this activity from activity in ruleset b.is this possible? If yes, how?
In real time what sap crm consultant to?
How to customize workgroup message?
Under what circumstance is it impossible to assign a default value to a parameter while declaring a function?
Which rman command is used to create an exact replica of a database innew host?
explain declarative management framework (dmf) in sql server 2008?
what is offset-fetch filter in tsql? : Transact sql