Tip 1 : Try to build any hands-on project E2E project for learning Spring, JPA, Restful API,Angular2+ even if its a basic application and doing online courses [udemy/coursera etc] for these topics help a lot in asserting strong fundamentals.
Tip 2 : Be consistent, learn and practice regularly as revision is very imp in tech as we tend to forget old thing while learning new.
Tip 3 : Apply in smaller companies before applying for your dream or go to company to have some interview practice behind your belt.
Tip 1 : Should be crisp and to the point.
Tip 2 : Should not be more than 1-2 pages. as no-one has the time to go thru a long resume.
Basic OOPS concepts, finding the flaw in code and how can it be refactored better.



Gave the Floyd Warshall Cycle loop finding solution, was asked to code it in editor and dry run.
Basic to Medium level datastructures questions.



‘S’ = “bacda” and ‘K’ = 3.
So, the substrings having at most ‘3’ distinct characters are called good substrings. Some possible good substrings are:
1. “bac”
2. “acd”
3. “acda”
The substring “acda” is the largest possible good substring, as we cannot get any other substring of length 5 or more having distinct characters less than or equal to ‘3’. Thus, you should return ‘4’ as the answer.
Thought about the problem, came up with a bruteforce solution, discussed with the interviewer, then he gave a hint, improved my solution more. Was asked to code the solution down.
Give a high level design for library management system.
Tip 1 : Told the components we can use like creating separate modules for separate functionality.
Tip 2 : Discussed the solution and got more hints and worked on it to create a better design.
HR and behavioral and managerial round.
HR and managerial round, asked questions like.
Why are you considering job change after just 1 year?
Tell me about any problem you faced in your work and how did you tackle it.
Tip 1 : Be prepared for these types of questions.
Tip 2 : Always prepare 1-2 answers for most common behavioral questions.

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?