Tip 1 : Give mock interiviews.
Tip 2 : Practice by RS aggarwal
Tip 1 : Add Keywords from the Job Posting
Tip 2 : Don’t Forget the Cover Letter
- Morning time
- Environment was good.
- No
- Interviewer was not soo good
Ques-
Assume a relation X (M, N, O, P, Q) that has the following functional dependencies:
MNO -> PQ and
P -> MN
The total number of superkeys of X would be:
Tip 1 : Practice DBMS Questions
Answer : Answer is 10



Step 1 -> In the first test case, we have . The 2 triples
Step 2 ->In the second test case, we have . The 5 triples
Step 3 -> In both above samples, it is easy to verify that all 3 conditions hold and there are no other triples satisfying the conditions.

Let us suppose the passing marks is: 10
So, the number of ways Ninja can score 10 marks are (2, 2, 2, 2, 2) and (5, 5), so you need to print 2.
Keep in mind that a particular test has infinite questions of each type.
Keep in mind that the ninja does not want more than the passing marks.
Please note that (2, 5) and (5, 2) are the same and you need to take them as a single way.
s1 - Order should be [2,1,3,4,5], initially cutoff is zero.
s2 - Second student has more marks than cutoff, he will pass and cutoff will now be one as bound for second student is 1.
s3 - First student has marks equal to cutoff, he will also pass and cutoff will be 1+3=4.
s4 -Third student has marks equal to cutoff , he will also pass and cutoff will be 4+7=11.
s5 - Now fourth and fifth students will fail because both of them have marks less than 11.



Let the array 'arr' be: [1, 0, 1].
Let ‘k’ be: 1
Then the subarrays having the number of ones equal to ‘k’ will be: [1], [1,0], [0,1], [1].
step 1 - First Test Case: String 2 and 3 have character 0 in common
step 2 - Second test case: All strings have 1 in common so answer is number of pairs, which is 10



An array is called good if the sum of elements in odd indexes is equal to the sum of elements in even indexes.
In array A= [1 2 4 3 6], if we delete A[4]=6, we will get new array B= [1 2 4 3], where B[0] + B[2] = B[1] + B[3] = 5, which means array B is good.
s1 - According to the defination: 1 should have exactly one or zero occurence, 2 should have two or zero occurences and 3 should have three or zero occurences.
s2 - So for three, we have two options, either we remove both occurences or add one occurence, it will be optimal to add one occurence.
- Morning time
- Environment was good.
- No
- Interviewer was moody
1 - Tell me about yourself.
2- Why are you leaving your current job?
3- Why are you interested in this position?
4- Why do you want to work here?
5- What are you passionate about?
6- Where do you see yourself in five, 10 and 15 years?
Tip 1 : Practice by online sites
Tip 2 : Refer reading books
Tip 3 : Speak in front of others
I approach because daily i speak English at home

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?