Tip 1 : Consistency is the key, the interview questions are from the frequently asked interview questions from Leetcode.
Tip 2 : Practice system design questions throughly, keep asking questions to yourself.
Tip 3 : Time yourself for each coding question, and record your interview to know the mistakes.
Tip 1 : Mention precise numbers on the job description and functionalities to describe the work experience/project impact.
Tip 2 : Keep your resume as simple as possible. Do not over mention stuff that you can't speak when asked.
Complete the assessment in 72hrs from the email received time.



A substring is a contiguous segment of a string.
The problem was straight forward. It is a leetcode top asked question.
An assignment was shared 1 day before the round. We are expected to solve the problem, write a code to fulfil all the test cases for the problem statement.
Build a movie booking ticketing system using Java. Develop the backend application without any userinterface.
I assumed the theater seating pattern and declared a matrix of that size from the user input, and then read a CSV file as an input for the booking tickets. We need to show if the booking is successful for the given request based on the seating availability, and other edge cases.
Technical Round, I was asked one coding question.



The same letter cell should not be used more than once.
For a given word “design” and the given 2D board
[[q’, ‘v’, ‘m’, ‘h’],
[‘d’, ‘e’, ‘s’, ‘i’],
[‘d’, ‘g’, ‘f’, ‘g’],
[‘e’, ‘c’, ‘p’, ‘n’]]
The word design can be formed by sequentially adjacent cells as shown by the highlighted color in the 2nd row and last column.

I had given the brute force approach initially, The interviewer asked me to optimize, I had given the approach however couldn't produce the solution 100%, the interviewer was ok with it.

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?