Tip 1 : Don't try to cover everything, go with one or two skills to master it and have some general knowledge about others.
Tip 2 : Do a project along with everything you learn. Practical exposure is what organizations demand.
Tip 3 : Do not ignore soft skills at all. Many underestimate the magic of soft skills in getting selected over others.
Tip 1 : Resume should not be more than 1 or 2 pages. All information should be provided in the form of bullets and numbered in a precise manner and not just in long paragraphs with detailing for every aspect.
Tip 2 : The resume should be easily readable with formal fonts and design, and should not contain false information.
It was an online technical, aptitude, and English test.



Consider the arrays as ARR = { 9, 5, 8, 4, 6, 5 } and BRR = { 8, 4, 5 }
The output for the above example is { 8, 4, 5, 5, 6, 9 }.
Elements of ‘BRR’ are non repeating.
I started applying merge sort but that would give more complexity i.e., O(n log n)and would not go for repetitive numbers. Thus i applied counting sort for the same which would decrease the complexity to O(n+k).
It was a face to face technical interview round where based on my previous study and resume I was supposed to answer the questions asked by them.
Difference between equal and equals.
Difference between overloading and overriding.
What is inheritance.
What types of inheritance are supported by java.
Answered appropriately giving examples and wrote the code. Confused between equal and equals question but interviewer helped in that.
1. What is primary, candidate and foreign key.
2. Write a query to join three tables.
Tip 1 : theoretical questions can be answered with examples
Tip 2 : query must be as short and precise as possible.
Tip 3 : sql queries and database knowledge is relevant to learn.



F(n) = F(n-1) + F(n-2),
Where, F(1) = F(2) = 1.
For ‘N’ = 5, the output will be 5.
It was HR interview with basic questions and checking according to SWOT analysis.
What are your strengths and weaknesses?
How can you be an asset to us?
Are you comfortable to work under pressure?
What are your expectations from us?
Tip 1 : Be confident and true to your every answer.
Tip 2 : Denials of certain things are acceptable enough upto some level.
Tip 3 : Assure yourself to be positive in thinking and be comfortable and communicate and not shy.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?