Tip 1 : Prepare your resume projects very well.
Tip 2 : OOPS concepts are a must
Tip 3 : Prepare well for basic programming questions like Fibonacci series, GCD of number, etc.
Tip 1 : Your projects play a very important role so put those which you can explain clearly and be ready for the counter questions which will be asked on the technology on which you have made the project.
Tip 2 : From my experience try to avoid web development projects in your resume because almost everyone knows about this tech and you will face a huge amount of rapid-fire questions from your interviewer and if you give 1-2 wrong answers then chances are you will be rejected. Take other technology tracks projects like machine learning, Python projects like game, etc etc...
There will be 5 sections : Quantitative, Aptitude, English, Pseudo code and the last 1 programming question.



You are given ‘X’ as 20 and ‘Y’ as 15. The greatest common divisor, which divides both 15 and 20, is 5. Hence the answer is 5.
Used this formula to solve the problem. : gcd(X, Y) = gcd(Y, X % Y) , If X and Y are not equal 0.
This was a technical interview round. The interviewer asked me 2 programming questions and some SQL queries along with OOPS concepts.



N = 5
S = ‘GEEK’
ANSWER:- The answer should be [(‘E’,2)] because ‘E’ is the only character that is duplicated and has frequency 2.
Print the top 5 salaries of Employees from the Employee table.
Select distinct * from
Employees
Order by salary desc
Limit 5Print the 4th highest salary of the employee from the Employees table
Select distinct * from
Employees
Order by salary desc
Limit 4, 1


Bubble Sort implementation for the given array: {6,2,8,4,10} is shown below :-
This was my last round and I hoped it to go good just like the other rounds. The interviewer was very straight to the point and professional. The interview lasted for 30 minutes.
1) Why should we hire you?
2) What are your expectations from the company?
3) How was your overall interview experience?
4) What are your strengths and weakness according to you?
5) Where do you see yourself in the next 5 years?
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 : Since everybody in the interview panel is from a tech background, here too you can expect some technical questions. No coding in most of the cases but some discussions over the design can surely happen.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: