Tip 1: Give live mock interviews.
Tip 2: Read past interview experiences.
Tip 3: Go through the job description thoroughly and prepare accordingly.
Tip 1: Create a one-page document with precision.
Tip 2: Avoid fake expansions during discussions.
Telephonic Round with HM in US hours.
There was a case study problem related to international cards and risks.
This was a coding, data structures and SQL round and was conducted around the evening. The interviewer was very interactive and it was a very healthy discussion.



Given a string of brackets, the task is to find an index k which decides the number of opening brackets is equal to the number of closing brackets.
The string must be consists of only opening and closing brackets i.e. ‘(‘ and ‘)’.
An equal point is an index such that the number of opening brackets before it is equal to the number of closing brackets from and after.
Approach 1:
Store the number of opening brackets that appear in the string up to every index, it must start from the starting index.
Similarly, Store the number of closing brackets that appear in the string up to every index but it should be done from the last index.
Check if any index has the same value as the opening and closing brackets.
This was a panel discussion with two panellists (Senior Architect and Director). Both interviewers were very cooperative.
Covered all Java and Spring boot concepts thoroughly, with System Design Concepts like latency, P95, P99, HTTP requests and thread pools.

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