Tip 1 : Practice as much as possible.
Tip 2 : Attempt questions with time limit.
Tip 3 : Try variety of questions.
Tip 1 : Be honest with your projects
Tip 2 : Highlight required details. This helps interviewer to ask related questions.
This round contained MCQ and coding related questions. 3 coding questions of easy, medium and hard level were there. MCQ question was to test domain knowledge.


Tip 1: conceptually you should be good handling lists
Tip 2: Optimization of space and time should be there.
Tip 3: Try to first layout the problem statement clearly.
It was Technical Interview on WebEx. Including questions on data structures, Oops concept, internship projects, what challenges I faced in my projects.
Interviewer was very friendly.


‘S’ = “aabcd”, ‘M’ = 2, ‘A’ = [0, 1]
After 1st operation i.e, reversing from [0, 4], ‘S’ = “dcbaa”.
After 2nd operation i.e, reversing from [1, 3], ‘S’ = “dabca”.
Hence, the answer is “dabca”.
Tip 1: String Concepts should be clear.
Tip 2: Understand the requirements
Tip 3: optimization is required.
You have 1000 people in room. 1st person has a gun he kills the 2nd person and passes the gun to 3rd person. This continues till the last person is left. Who will be the last person?
Write an algorithm for this and what data structures you will use and why.
Tip 1: Data structures used will be circular queue.
Tip 2: Understand the requirements
Tip 3: Discuss why you are not using othe data structures in scope.
Kind of Behavioural and Technical and Logical.
It was scheduled in evening hours. I asked my recruiter to schedule in the evening as I was having another interview in morning.
Interviewer was bit serious but helpful.
Find the missing term within some time limit.
157.5 45 1 15 6 ? 3 2 2
Tip 1: Use elimination approach.
Tip 2: Speak out loud to your interviewer why you thing a particular way
Tip 3: Don't loose hope. Keep trying.
You have 3000 bananas and need to cover 1000kms. Camel eat 1 banana for every 1 km travel. You have to transfer maximum number of Bananas across those 1000kms. How many bananas will be transferred maximum.
Tip 1: Start with the basis approach
Tip 2: understand the questions and ask in case of doubt. It's okay if you don't understand the problem first time.
Tip 3: Discuss the approach with your interviewer. They will give clues in case you are missing something

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?