Tip 1 : First need to check the Interview experiences of candidates, check the topics make a list.
Tip 2 : Give daily 1 hour at least on that topic, Apply and give interviews in startups you get good interviews experience.
Tip 3 : Practice daily coding, Read blogs on related technology.
Tip 1 : Mention your projects.
Tip 2 : Never lies on a resume.
You will get the google meet link for the meeting. Mostly it would be between 12 to 4 PM.
The interviewer were good they provided a helpful environment. They start with easy topics like java and oops then some coding questions and at last few design questions. Sometimes they ask SQL queries.



Step 1: First I applied brute force and get the element by checking with Index values.
Step 2: Then he asked something better.
Step 3: Then I add all the elements of the array and subtract that from the sum of integer values 1 to N. Where and is the max number
Find the 3rd maximum Salary.
select * from ((select * from Employee
ORDER BY `sal` DESC limit 3) AS T)
ORDER BY T.`sal` ASC limit 1;



Efficient Approach: Following are the steps:
Initialize sum = 0 and maxLen = 0.
Create a hash table having (sum, index) tuples.
For i = 0 to n-1, perform the following steps:
Accumulate arr[i] to sum.
If sum == k, update maxLen = i+1.
Check whether sum is present in the hash table or not. If not present, then add it to the hash table as (sum, i) pair.
Check if (sum-k) is present in the hash table or not. If present, then obtain index of (sum-k) from the hash table as index. Now check if maxLen < (i-index), then update maxLen = (i-index).
Return maxLen.
Its also in the mid of the day. Its very easy round and they just asked the reason for change.
They Asked why are you leaving such a huge MNC and why do you want to join us.
Tip 1 : Try to be honest about why are you leaving.
Tip 2 : I leave the my previous company for technology growth.
Tip 3 : In small organisation you get better opportunities.

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