Optum interview experience Real time questions & tips from candidates to crack your interview

Software Engineer

Optum
upvote
share-icon
3 rounds | 4 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 1 month
Topics: Data Structures especially Linked List, OOPS, DBMS, SQL, Top Interview Questions
Tip
Tip

Tip 1 : Top interview Questions
Tip 2 : Prepare SQL properly
 

Application process
Where: Campus
Eligibility: Above 7 CGPA , No Backlogs Present
Resume Tip
Resume tip

Tip 1 : Be Honest about Skills
Tip 2 : Have some projects which contains Database as a part.

Interview rounds

01
Round
Medium
Online Coding Interview
Duration90 minutes
Interview date15 Oct 2021
Coding problem1

MCQs and 2 coding questions which were easy.

1. Maximum Sum Subarray

Moderate
0/80
Asked in companies
IntuitAmazonOracle

You are given an array/list ARR consisting of N integers. Your task is to find the maximum possible sum of a non-empty subarray(contiguous) of this array.

Note: An array C is a subarray of array D if it can be obtained by deletion of several elements(possibly zero) from the beginning and the end of array D.

For e.g.- All the non-empty subarrays of array [1,2,3] are [1], [2], [3], [1,2], [2,3], [1,2,3].

Problem approach

It was an easy application of Kadane's Algorithm.

Try solving now
02
Round
Easy
Online Coding Interview
Duration45 minutes
Interview date27 Sep 2020
Coding problem2

Technical Interview

1. SQL Question

Max and Min Queries

Problem approach

Tip : Memorise the basic SQL queries.

2. DBMS Question

Difference between INNER JOIN and OUTER JOIN

Problem approach

Inner Join :
 

1) It returns the combined tuple between two or more tables.
2) Used clause INNER JOIN and JOIN.
3) When any attributes are not common then it will return nothing.
4) If tuples are more. Then INNER JOIN works faster than OUTER JOIN.
5) It is used when we want detailed information about any specific attribute.


SQL Syntax :
 

select *
from table1 INNER JOIN / JOIN table2
ON table1.column_name = table2.column_name;

 

Outer Join :
 

1) It returns the combined tuple from a specified table even if the join condition fails.
2) Used clause LEFT OUTER JOIN, RIGHT OUTER JOIN, FULL OUTER JOIN, etc.
3) It does not depend upon the common attributes. If the attribute is blank then there is already placed NULL.
4) Generally, The OUTER JOIN is slower than INNER JOIN. But except for some special cases.
5) It is used when we want to complete information.
 

 

SQL Syntax :
 

select *
from table1 LEFT OUTER JOIN / RIGHT OUTER JOIN /
FULL OUTER JOIN / FULL JOIN table2 ON
table1.column_name = table2.column_name;
03
Round
Easy
HR Round
Duration30 minutes
Interview date28 Sep 2021
Coding problem1

This is a cultural fitment testing round. HR was very frank and asked standard questions. Then we discussed about my role.

1. Basic HR Question

Why should we hire you?

Problem approach

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

Skill covered: Programming

How do you remove whitespace from the start of a string?

Choose another skill to practice
Similar interview experiences
company logo
Software Engineer
3 rounds | 3 problems
Interviewed by Optum
1573 views
0 comments
0 upvotes
company logo
Software Engineer
3 rounds | 5 problems
Interviewed by Optum
994 views
0 comments
0 upvotes
company logo
Software Engineer
3 rounds | 5 problems
Interviewed by Optum
848 views
0 comments
0 upvotes
company logo
Software Engineer
3 rounds | 8 problems
Interviewed by Optum
750 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Software Engineer
5 rounds | 5 problems
Interviewed by Microsoft
10148 views
1 comments
0 upvotes
company logo
Software Engineer
2 rounds | 4 problems
Interviewed by Amazon
4448 views
1 comments
0 upvotes
company logo
Software Engineer
3 rounds | 5 problems
Interviewed by Amazon
3674 views
0 comments
0 upvotes