Tip 1 : Be thorough with the concepts.
Tip 2 : Practice multiple coding questions
Tip 3 : Do not take stress at the time of interview and try to relax.
Tip 1: Be precise with the data
Tip 2: Mention keywords from job description of the role applied in your resume
Written exam of college students



Let the array = [ 4, 2, 1, 5, 3 ]
Let pivot to be the rightmost number.

First choose the language you are comfortable with, Since Java was mandatory as per job description, i chose Java and wrote the code.
The code for quick sort in Java and other languages is available online.



F(n) = F(n-1) + F(n-2),
Where, F(1) = F(2) = 1.
For ‘N’ = 5, the output will be 5.
First choose the language you are comfortable with, Since Java was mandatory as per job description, i chose Java and wrote the code.
The code for fibonacci series in Java and other languages is available online.



1
11
121
1221
There will be this question where they will give you a pattern consisting of numbers and special symbols for which you will have to write the code to get the desired output.
Many pattern problems are available online for practice.
30minutes face to face interview
Interviewer was from the developement team
The round was dedicated to coding and testing questions
Explain your college project and what technology was used
You have to tell about the project you made in college with the technology used. My project was made in Java and used springboot framework. There were few questions related to it, which i had to answer.
I was asked to explain the concepts introduced in oops
There are around six concepts introduced in oops which i told to the interviewer and there were some follow up questions related to my answer.
I was asked to explain black box testing
Find the next number in sequence
Find the odd one out
Write an example of inner join and left join and explain the outcome from sample data.
Write Insert command to add data into a table
The interviewer was the CFO of the company and the duration of interview was approx 30 minutes.
We were asked if we are fine with night shifts if something critical comes up for your customer.
Tip 1: Tell them you are fine to adjust sometime if something is critical, since customer satisfaction is top priority.
Explain your strengths and weaknesses
I was asked about my hobbies and explain them the type of person i am.
Tip 1: When preparing to discuss your weaknesses, choose one that gives you the chance to demonstrate growth and enthusiasm for learning.

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?