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

Software Engineer

Optum
upvote
share-icon
3 rounds | 3 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 2.5 Months
Topics: OOPS, SQL, DBMS, Data Structure, Algorithms
Tip
Tip

Tip 1 : Study the concepts of OOPS well.
Tip 2 : Do some basic coding questions like searching sorting.
Tip 3 : For every topic study the top 50 interview questions from Edureka.

Application process
Where: Referral
Eligibility: Above 7 CGPA
Resume Tip
Resume tip

Tip 1 : Only mention the projects that you are thorough with.
Tip 2 : Don't crowd your resume. Be specific to the the topics that you can answer well.

Interview rounds

01
Round
Hard
Online Coding Interview
Duration75 minutes
Interview date16 Oct 2021
Coding problem1

There was a coding question for 50 marks which had two given test cases and 15 hidden test cases. With some basic knowledge of coding you'll be able to do it.
25 questions were there for 1 mark each on all the concepts of Computer Science.

1. Armstrong Number

Easy
15m average time
85% success
0/40
Asked in companies
OracleIBMOptum

You are given an integer ‘NUM’ . Your task is to find out whether this number is an Armstrong number or not.

A k-digit number ‘NUM’ is an Armstrong number if and only if the k-th power of each digit sums to ‘NUM’.

Example
153 = 1^3 + 5^3 + 3^3.

Therefore 153 is an Armstrong number.
Problem approach

class Solution {
static String armstrongNumber(int n){
int temp = n;
int arm = 0;
while(n!=0) {
int rem = n%10;
arm += Math.pow(rem,3); 
n = n/10;
}
if(arm == temp) {
return "Yes";
}
else {
return "No";
}
}
}

Try solving now
02
Round
Medium
Video Call
Duration60 Minutes
Interview date18 Oct 2021
Coding problem1

I got the time slot of noon 12. The interviewer was very friendly. Asked some casual questions like how are you doing in these COVID Times and about hobbies to make me comfortable. Then asked me to give my introduction.Then proceeded with the technical questions. 

1. Technical Questions

Asked me about the concepts of OOPS. Asked me to implement classes and objects. Then asked me to implement inheritance. Asked the difference between overloading and overriding and asked to implement both. Asked some basic questions on SQL like difference between drop delete and truncate. Then shifted to data structures. Didn't make me code any but asked as how many data structures are there in total. Name Them. Then he shifted to DBMS. Asked me about normal forms. After this he was satisfied and asked me if I had any questions for him.

03
Round
Easy
HR Round
Duration15 Minutes
Interview date22 Oct 2021
Coding problem1

It was a simple round where the HR asked about my interests and hobbies. Asked my preferred location and explained about my compensation.

1. Basic HR Questions

What are your hobbies.
Where are you from.
Which location would you like to work in.

Problem approach

Tip 1 : Just be confident in answering your questions.
Tip 2 : Also be careful while answering.
Tip 3 : Answer to the point. Don't try to act oversmart.

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 | 4 problems
Interviewed by Optum
1393 views
1 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