Tip 1 : Prepare DSA well and I personally recommend Coding Ninjas and GeeksForGeeks for interview preparation.
Tip 2 : Be confident & relaxed during the interview.
Tip 3 : Do revise your projects i.e how it works and what are its functionalities.
Tip 1: Make your resume short and try to make it one page only and mention all the skills that you are confident in.
Tip 2: Do not put false things on your resume.
Coding Round only allowed Java Language. I was able to solve 3 full and 1 partial question from 5 questions.



By using Hash Map in Java. I was able to solve



You are given ‘str’ = ‘abbbbbbc’ and ‘K’ = 2, then the substrings that can be formed are [‘abbbbbb’, ‘bbbbbbc’]. Hence the answer is 7.
By using Sliding Window Techniques.



By using Dynamic Programming, I was able to solve.
In Technical Interviewer asked Python, Java, Project related Questions, and DBMS Questions. I had rejected in the Interview round. they asked the rapid-fire question back to back theory questions asked. They want only Advance Java Knowledge, I was only basic knowledge of Java at That time. so that's the reason I was rejected.



Each pair should be sorted i.e the first value should be less than or equals to the second value.
Return the list of pairs sorted in non-decreasing order of their first value. In case if two pairs have the same first value, the pair with a smaller second value should come first.
By using Sorting and Binary Search, I was able to solve.

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