Tip 1 : For Optum specifically, prepare well Data Base Management - SQL , solve questions on HackerRank.
Tip 2 : Good hold on Java or any OO language .
Tip 3 : Practice atleast 5-10 codings questions daily on platforms like CodeStudio, LeetCode, HackerRank, Interviewbit.
Tip 4 : Confidence is the key.
Tip 1 : Keep it simple and relevant to your information.
Tip 2 : Include good projects- they are the main game.
Tip 3 : Resume represents you, so adequate presentation is a must.
There were 25 MCQs consisting of various topics such as OOPs, SQL, CN, DSA, OS and 2 coding questions



In the example below, if we follow the path shown in the figure, then the minimum initial hp required will be 3.





knightPosition: {3,4}
targetPosition: {2,1}

The knight can move from position (3,4) to positions (1,3), (2,2) and (4,2). Position (4,2) is selected and the ‘stepCount’ becomes 1. From position (4,2), the knight can directly jump to the position (2,1) which is the target point and ‘stepCount’ becomes 2 which is the final answer.
1. The coordinates are 1 indexed. So, the bottom left square is (1,1) and the top right square is (N, N).
2. The knight can make 8 possible moves as given in figure 1.
3. A Knight moves 2 squares in one direction and 1 square in the perpendicular direction (or vice-versa).
Firstly self introduction, then was asked about my projects followed by some questions from OOPS and then DBMS.
What are access specifiers and what is their significance?
What is Data Abstraction and how to achieve it?
What is Early Binding and Late Binding in C++?
What are different types of joins in SQL?
Explain the concept of ACID properties in DBMS?
This was a Technical Cum HR round where I was first asked some basic OOPS related concepts and then we discussed about my expectations from the company, learnings and growth in the forthcoming years. I would suggest be honest and try to communicate your thoughts properly in these type of rounds to maximise your chances of getting selected.
Why should we hire you?
Tip 1 : The cross questioning can go intense some time, 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 opinion.
Tip 3 : Context of questions can be switched, pay attention to the details. It is okay to ask questions in these round, like what are the projects currently the company is investing, which team you are mentoring. How all is the work environment etc.
Tip 4 : Since everybody in the interview panel is from 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
What is recursion?