Tip 1 : Go with the basics (Ds, DBMS, Os, SDLC)
Tip 2 : Update your resume with at least one good project
Tip 3 : If the interview is profile-based, study/learn about the particular domain/profile.
Tip 1 : Techstack/skills which you can talk about
Tip 2 : Good project which you can explain
A date was set before which you need to attempt the test. Timing about 90 minutes.



Merge Sort Algorithm -
Merge sort is a Divide and Conquer based Algorithm. It divides the input array into two-parts, until the size of the input array is not ‘1’. In the return part, it will merge two sorted arrays a return a whole merged sorted array.

The above illustrates shows how merge sort works.
It is compulsory to use the ‘Merge Sort’ algorithm.
Tip 1 : Be good with basic programming
Tip 2 : Practise on internet



If A = “aab”, B = “abc”, C = “aaabbc”
Here C is an interleaving string of A and B. Because C contains all the characters of A and B and the order of all these characters is also the same in all three strings.

If A = “abc”, B = “def”, C = “abcdefg”
Here C is not an interleaving string of A and B as neither A nor B contains the character ‘g’.
It was a single Tech + HR interview
There are 3 jars, namely, A, B, C. All of them are mislabeled. Following are the labels of each of the jars:A: CandiesB: SweetsC: Candies and Sweets (mixed in a random proportion)You can put your hand in a jar and pick only one eatable at a time. Tell the minimum number of eatable(s) that has/have to be picked in order to label the jars correctly.
Why should we hire you?
What are your strengths and weaknesses?
How one can overcome his weaknesses?

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?