Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Optum Global Solutions Team. If you also belong to the team, you can get access from here

Optum Global Solutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Optum Global Solutions Software Developer Intern Interview Questions and Answers

Updated 16 Jan 2025

Optum Global Solutions Software Developer Intern Interview Experiences

3 interviews found

Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via campus placement at KIIT University, Bhuvaneshwar and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

It had mcq and 1 hard coding question

Round 2 - Technical 

(2 Questions)

  • Q1. They asked me about backtracking and dp series problem and also to solve the given question
  • Q2. Java and in depth about different pillars of java

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus primarily on Java and advanced data structures and algorithms topics, such as backtracking and dynamic programming.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via Campus Placement and was interviewed before Oct 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was a 2hr test. It had two sections. 1)Quantitative aptitude and verbal ability and 2) Technical aptitude.

Round 2 - Technical 

(1 Question)

  • Q1. It was for 45 min. Asked some OOPs concepts, CN fundamentals. Questions were asked on arrays and linked lists. also on OS
Round 3 - HR 

(1 Question)

  • Q1. It was for 5 min. Asked on why I wanted to join Optum

Interview Preparation Tips

Interview preparation tips for other job seekers - Mention only things that you are perfect in resume. Don't add extra stuff and don't fake it.

Software Developer Intern Interview Questions Asked at Other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in Apple
Q2. Kevin and his Fruits Problem Statement Kevin has 'N' buckets, eac ... read more
asked in CommVault
Q3. Sliding Maximum Problem Statement Given an array of integers ARR ... read more
asked in Amazon
Q4. Fish Eater Problem Statement In a river where water flows from le ... read more
Q5. Reverse Words in a String: Problem Statement You are given a stri ... read more

I was interviewed in Sep 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Easy

First Round-It was 90 minutes round and basically contains aptitude question which you need to solve quickly.

  • Q1. MCQs

    Normal aptitude and English and reasoning questions.

Round 2 - Video Call 

(1 Question)

Round duration - 40 minutes
Round difficulty - Easy

My interview started and the interviewer asked me to introduce myself. Also he asked me some questions related to my hobbies like the last movie I saw in theatre (these questions are asked to make you comfortable and familiarise you with the interview) .

After this he asked me about my projects.
In which technology did I work. What is my project all about , what are its features and how is it useful in the real world.

After this, since I made my project in native Android using Java he asked me some conceptual questions in Java.He asked me about Collection framework.
After this he asked me about OOPs.What is OOPs, then he asked me about polymorphism and told me to explain it.

Finally, he gave me a question and asked me to code it.
Q. Find the second largest element in the given array (don't use sorting ).
Eg. arr={6,7,8,9,0}
Then, output=8

Interview took around 35-40 min .
At last he asked me if I had any questions for him to which I replied in what technologies do I get to work on if I get selected.

  • Q1. 

    Find the Second Largest Element

    Given an array or list of integers 'ARR', identify the second largest element in 'ARR'.

    If a second largest element does not exist, return -1.

    Example:

    Input:
    ARR = [2,...
  • Ans. 

    first calculate the largest no. then again run the loop for entire array and find the no. just less then that largest no. but greater than other nos.

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from National Institute of Technology, Raipur. I applied for the job as SDE - Intern in BangaloreEligibility criteria7+ CGPA, No Active backlogsOptum interview preparation:Topics to prepare for the interview - Arrays, Linked Lists , Stacks & Queues ,Trees and Graphs, OOPs, AlgorithmsTime required to prepare for the interview - 5 monthInterview preparation tips for other job seekers

Tip 1 : Consistency-Solving problems daily 
Tip 2 : Quality over quantity
Tip 3 : build confidence by solving problems till you confident about any topic (don't go over number of questions)

Application resume tips for other job seekers

Tip 1 : Be Precise 
Tip 2 : mention only important tech related things like projects and experiences

Final outcome of the interviewSelected

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at SRM university (SRMU) and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It is easy and not that much tough.

Round 2 - Coding Test 

Both questions from strings

Round 3 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java and Python programming languages

    • Proficient in web development technologies like HTML, CSS, and JavaScript

    • Currently pursuing a degree in Computer Science

  • Answered by AI
  • Q2. Projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on resume projects
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

2 coding question were there and we need to solve eit in 45 minutes

Round 2 - Technical 

(2 Questions)

  • Q1. Asked a DSA questions
  • Q2. Some random question about project.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA well and go through your project thoroughly.
Interview experience
3
Average
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Moderate difficulty level questions were asked

Round 2 - Coding Test 

High difficulty level questions were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Tough process
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Birla Institute of Technology and Science (BITS), Pilani and was interviewed in Nov 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all Resume tips
Round 2 - Coding Test 

Coding test was easy, there were 2 questions.

Round 3 - Technical 

(1 Question)

  • Q1. Square root of a number in log n time
  • Ans. 

    Using binary search, square root of a number can be found in log n time.

    • Choose a range for the square root

    • Use binary search to find the square root within the range

    • Adjust the range based on whether the guess is too high or too low

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Basic questions on leadership and some problem based.
  • Q2. Basics questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and try to give as many mock interviews as possible

Skills evaluated in this interview

I was interviewed in Mar 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

The test was scheduled in early morning 
The environment was stable and strict

  • Q1. How do you join two tables in SQL?
  • Q2. 

    String Palindrome Verification

    Given a string, your task is to determine if it is a palindrome considering only alphanumeric characters.

    Input:

    The input is a single string without any leading or trailing...
Round 2 - Video Call 

Round duration - 12 minutes
Round difficulty - Medium

The technical interview was scheduled in evening.
The environment was stable and friendly 
The interviewer provided enough comfort. He asked some technical questions that’s all.

Round 3 - HR 

Round duration - 10 minutes
Round difficulty - Medium

This HR interview was scheduled in morning 
The environment was fine as it was the last round 
The interviewer was friendly and was trying to know how much willing I am to join the company.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in DelhiEligibility criteriaNo backlogsWipro Limited interview preparation:Topics to prepare for the interview - C++, SQL, python, Data Structure , Operating systemsTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : search frequently asked questions 
Tip 2 : prepare smartly the important topics

Application resume tips for other job seekers

Tip 1 : keep it short
Tip 2 : must add the projects you have worked on

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Blood relation, date and time

Round 2 - Coding Test 

Beginner level questions

Round 3 - verbal 

(2 Questions)

  • Q1. Repeat what's written on the screen
  • Q2. Repeat what you hear
Round 4 - HR 

(1 Question)

  • Q1. Basic Introduction questions, followed by technical interview as well

I applied via campus placement at Engineering College M Kumarasamy College of Engineering, Karur and was interviewed in Nov 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. 1.Self introduction 2.question about my department(ex ECE) 3.oops (polymorphism,inheritance,encapsulation) 4.programming C language because i preferred factorial of given number using recursion ...
Round 2 - HR 

(1 Question)

  • Q1. Just a formalities of checking address aadhar no mobile num thats all.

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on resume becoz what u have to tell in self intro is they are going to ask question.So be aware using words in self intro :)
Contribute & help others!
anonymous
You can choose to be anonymous

Optum Global Solutions Interview FAQs

How many rounds are there in Optum Global Solutions Software Developer Intern interview?
Optum Global Solutions interview process usually has 3 rounds. The most common rounds in the Optum Global Solutions interview process are Technical, Aptitude Test and HR.
What are the top questions asked in Optum Global Solutions Software Developer Intern interview?

Some of the top questions asked at the Optum Global Solutions Software Developer Intern interview -

  1. It was for 5 min. Asked on why I wanted to join Op...read more
  2. It was for 45 min. Asked some OOPs concepts, CN fundamentals. Questions were as...read more
  3. They asked me about backtracking and dp series problem and also to solve the gi...read more

Recently Viewed

INTERVIEWS

Boeing

85 interviews

INTERVIEWS

Apexon

135 interviews

INTERVIEWS

Xogene

8 interviews

INTERVIEWS

OpenBet

3 interviews

INTERVIEWS

ABB

233 interviews

CAMPUS PLACEMENT

KIIT University, Bhuvaneshwar

INTERVIEWS

TSIM Communication Services

No Interviews

INTERVIEWS

Baxter International

No Interviews

INTERVIEWS

Zeus Learning

No Interviews

INTERVIEWS

Kansai Nerolac Paints

No Interviews

Tell us how to improve this page.

Optum Global Solutions Software Developer Intern Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Societe Generale Global Solution Centre

Be part of a company where work complements life, not consumes it

Optum Global Solutions Software Developer Intern Reviews and Ratings

based on 5 reviews

3.8/5

Rating in categories

4.0

Skill development

4.4

Work-life balance

3.9

Salary

4.6

Job security

4.8

Company culture

3.8

Promotions

3.9

Work satisfaction

Explore 5 Reviews and Ratings
Claims Associate
4.3k salaries
unlock blur

₹1.5 L/yr - ₹6 L/yr

Senior Software Engineer
2.8k salaries
unlock blur

₹9.7 L/yr - ₹33 L/yr

Software Engineer
2.6k salaries
unlock blur

₹6.2 L/yr - ₹22 L/yr

Medical Coder
1.2k salaries
unlock blur

₹1.5 L/yr - ₹8 L/yr

Senior Claims Associate
1.2k salaries
unlock blur

₹2.1 L/yr - ₹6.3 L/yr

Explore more salaries
Compare Optum Global Solutions with

Cognizant

3.8
Compare

Accenture

3.8
Compare

IBM

4.0
Compare

TCS

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent