Tip 1 : Must do Previously asked Interviews as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at least 2 good projects and you must know every bit of them.
Tip 1 : Have at least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
I was called for 1st round which was an online coding round. It was on zoom call for 1 hour in the afternoon. I was asked to turn on my video and share my screen and was told to use any IDE that I was comfortable with. After discussing the solution with the interviewer, if they are okay with it, I can write the code and after that is done, I have to paste the solution into a google doc.



I took 2 pointers one at the start and one at the end. If starting pointer is equal to the end pointer I would move both pointers by one, if it doesn't then left pointer by one.



If the given string is: STR = "abcde". You have to print the string "edcba".
Try to solve the problem in O(1) space complexity.
I just traversed from the end and append each letter in a new string character by character.
This was a Low-Level System Design round. We will be asked to design a system starting from the database, then classes and then high-level architecture for a given system.
Design database and class level diagram for the BookMyDoctor system.
This was a mangerial round. I was asked about my previous experience, how I followed agile technology in previous companies, how I used to handle client requests, my roles and responsibilities and aspirations.
Tell us an incident where you took ownership for a task.
Tip 1 : The cross-questioning can go intense sometimes, think before you speak.
Tip 2 : Be open-minded and answer whatever you are thinking, in these rounds I feel it is important to have an opinion.
Tip 3 : The context of questions can be switched, pay attention to the details. It is okay to ask questions in these rounds, like what are the projects currently the company is investing in and which team you are mentoring, how is the work environment etc.

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?