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

Proud winner of ABECA 2025 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Optum Global Solutions Software Engineer Interview Questions and Answers

Updated 11 Jul 2025

25 Interview questions

A Software Engineer was asked 3mo ago
Q. What types of joins are you familiar with?
Ans. 

Joins are SQL operations that combine records from two or more tables based on related columns.

  • INNER JOIN: Returns records with matching values in both tables. Example: SELECT * FROM A INNER JOIN B ON A.id = B.id;

  • LEFT JOIN: Returns all records from the left table and matched records from the right table. Example: SELECT * FROM A LEFT JOIN B ON A.id = B.id;

  • RIGHT JOIN: Returns all records from the right table and ma...

A Software Engineer was asked 4mo ago
Q. What is the process for implementing a linked list?
Ans. 

Implementing a linked list involves defining nodes, linking them, and providing methods for insertion, deletion, and traversal.

  • Define a Node class with data and a pointer to the next node.

  • Create a LinkedList class to manage the head node and operations.

  • Implement methods for insertion (at head, tail, or specific position).

  • Implement methods for deletion (by value or position).

  • Provide traversal methods to display the...

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Four people need to cross a bridge at night with only one torch t ... read more
asked in Capgemini
Q2. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... read more
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more
🔥 Asked by recruiter 2 times
A Software Engineer was asked 4mo ago
Q. What are the features of Java 8?
Ans. 

Java 8 introduced significant features like lambdas, streams, and the new Date-Time API, enhancing productivity and code readability.

  • Lambda Expressions: Enable functional programming by allowing you to pass behavior as a parameter. Example: (x, y) -> x + y.

  • Streams API: Facilitates processing sequences of elements (collections) in a functional style. Example: list.stream().filter(x -> x > 10).

  • Default Metho...

A Software Engineer was asked 4mo ago
Q. What is an IoC (Inversion of Control) container?
Ans. 

An IoC container manages object creation and dependencies, promoting loose coupling and easier testing in software applications.

  • IoC containers handle the instantiation and lifecycle of objects, reducing manual dependency management.

  • They support Dependency Injection (DI), allowing dependencies to be provided externally rather than hard-coded.

  • Examples include Spring Framework (Java), .NET Core's built-in IoC contain...

What people are saying about Optum Global Solutions

View All
a senior software engineer
2w
Offer selection
Hi all, I have two offers, one from optum (Unitedhealth group) and another from Experian. I'm a .net full stack developer. Which is better to go ? My main focus is, making it into top tier 1 companies.
Got a question about Optum Global Solutions?
Ask anonymously on communities.
A Software Engineer was asked 5mo ago
Q. Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly one solution, and you may not use ...
Ans. 

The 2 Sum problem involves finding two numbers in an array that add up to a specific target sum.

  • Given an array of integers and a target sum, identify two distinct indices whose values sum to the target.

  • Example: For array [2, 7, 11, 15] and target 9, the output is indices [0, 1] (2 + 7 = 9).

  • Use a hash map to store numbers and their indices for efficient lookup.

  • Time complexity can be O(n) with a hash map, compared t...

A Software Engineer was asked
Q. How can you arrange an array in decreasing order without using extra space, a sort function, or a reverse function?
Ans. 

Use bubble sort algorithm to rearrange the array in decreasing order.

  • Iterate through the array and compare adjacent elements, swapping them if they are in the wrong order.

  • Repeat this process until the array is sorted in decreasing order.

  • Example: ['apple', 'banana', 'cherry'] -> ['cherry', 'banana', 'apple']

A Software Engineer was asked
Q. Given the head of a singly linked list, sort the list using insertion sort, and return the sorted list.
Ans. 

Sort a linked list

  • Use a sorting algorithm like merge sort or quick sort

  • Traverse the linked list and rearrange the nodes accordingly

  • Ensure to update the head of the linked list after sorting

Are these interview questions helpful?
A Software Engineer was asked
Q. Write a function that reverses a string.
Ans. 

Reverse a string by iterating through the characters and swapping them

  • Create a function that takes a string as input

  • Initialize two pointers, one at the beginning and one at the end of the string

  • Swap the characters at the two pointers and move them towards the center until they meet

🔥 Asked by recruiter 2 times
A Software Engineer was asked
Q. What are constraints in SQL?
Ans. 

Constraints in SQL are rules that limit the type of data that can be inserted, updated or deleted from a table.

  • Constraints ensure data integrity and consistency.

  • Types of constraints include primary key, foreign key, unique, check, and default constraints.

  • Examples of constraints include ensuring a column cannot have null values, or ensuring a foreign key references a valid primary key.

  • Constraints can be added when ...

A Software Engineer was asked
Q. How can you restrict a class from being inherited?
Ans. 

To restrict a class from being inherited, mark it as final.

  • Use the final keyword before the class declaration.

  • Final classes cannot be subclassed.

  • Any attempt to subclass a final class will result in a compile-time error.

Optum Global Solutions Software Engineer Interview Experiences

45 interviews found

Software Engineer Interview Questions & Answers

user image Shivangi Pandey

posted on 11 Jul 2025

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Jun 2025, where I was asked the following questions.

  • Q1. Asked alot about stream, prepare them well
  • Q2. Mysql joins, delete ,drop ,truncate etc
  • Q3. IOC, Offset in kafka, beans, singleton design pattern how do we implement it etc

Interview Preparation Tips

Interview preparation tips for other job seekers - core java, an dmysql streams specially
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
No response

I appeared for an interview in Jun 2025, where I was asked the following questions.

  • Q1. The first round of the interview was technical, and I was asked two simple questions related to arrays.
  • Q2. The second interview also technical and focused on your resume.
  • Ans. 

    The second interview focuses on technical skills and experiences listed on your resume.

    • Be prepared to discuss specific projects you've worked on, such as a web application you developed using React and Node.js.

    • Highlight your problem-solving skills by explaining how you debugged a complex issue in a previous project.

    • Discuss your familiarity with algorithms and data structures, providing examples of how you've applied th...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Linked list graph string to be prepared

Round 2 - Coding Test 

Graph linked list was asked in this round

Round 3 - HR 

(1 Question)

  • Q1. Salary negotiation
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Rate yourself in the technology that you have added in your skills.
  • Ans. 

    I rate myself 8 out of 10 in Java, 7 out of 10 in Python, and 6 out of 10 in SQL.

    • Java - Strong understanding of OOP concepts, experience with Spring framework

    • Python - Proficient in data manipulation and analysis, used in various automation scripts

    • SQL - Comfortable writing complex queries, experience with database management

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Oct 2024, where I was asked the following questions.

  • Q1. Design Patterns and their usecase
  • Ans. 

    Design patterns are reusable solutions to common software design problems, enhancing code maintainability and scalability.

    • Singleton Pattern: Ensures a class has only one instance and provides a global point of access, useful for managing shared resources like configuration settings.

    • Observer Pattern: Defines a one-to-many dependency between objects, allowing multiple observers to be notified of state changes, commonly u...

  • Answered by AI
  • Q2. Mostly Map related questions in Java
  • Q3. Cloud questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Referral and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic Questions of Data structure
  • Q2. 2 Sum
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

There were DSA and SQL questions

Round 2 - Technical 

(1 Question)

  • Q1. Question about Arrays and DBMS
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

It was a standard and pretty easy one

Round 2 - HR 

(2 Questions)

  • Q1. Why do you want to join
  • Q2. Very professional HR

Interview Preparation Tips

Interview preparation tips for other job seekers - Optum is a great firm to join
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

String manipulation questions

Round 2 - Technical 

(1 Question)

  • Q1. Array search and sorting
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Feb 2023. There were 3 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 tips
Round 2 - Technical 

(3 Questions)

  • Q1. What are constructors in dot net core and how will you overload a constructor.
  • Q2. How to make restrict a class so that it can not be inherited
  • Q3. What are constraints in Sql
Round 3 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself and the work you have done in recent times.
  • Ans. 

    I am a software engineer with experience in developing web applications using Java and JavaScript.

    • Developed a web application using Java Spring framework

    • Implemented RESTful APIs for data retrieval and manipulation

    • Utilized JavaScript frameworks like React.js for front-end development

    • Worked on database design and optimization using SQL

    • Collaborated with cross-functional teams to deliver high-quality software

  • Answered by AI
  • Q2. What new technology have you learned in last 6 months.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and share your authentic experience only.

Skills evaluated in this interview

Optum Global Solutions Interview FAQs

How many rounds are there in Optum Global Solutions Software Engineer interview?
Optum Global Solutions interview process usually has 2-3 rounds. The most common rounds in the Optum Global Solutions interview process are Technical, Coding Test and Resume Shortlist.
How to prepare for Optum Global Solutions Software Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Optum Global Solutions. The most common topics and skills that interviewers at Optum Global Solutions expect are Java, Software Development, Software Engineering, SQL and Application Development.
What are the top questions asked in Optum Global Solutions Software Engineer interview?

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

  1. What are constructors in dot net core and how will you overload a construct...read more
  2. How to make restrict a class so that it can not be inheri...read more
  3. How to find Nth value in sql ? What difference between varchar and N varchar ? ...read more
What are the most common questions asked in Optum Global Solutions Software Engineer HR round?

The most common HR questions asked in Optum Global Solutions Software Engineer interview are -

  1. What are your salary expectatio...read more
  2. Tell me about yourse...read more
How long is the Optum Global Solutions Software Engineer interview process?

The duration of Optum Global Solutions Software Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.2/5

based on 31 interview experiences

Difficulty level

Easy 20%
Moderate 80%

Duration

Less than 2 weeks 58%
2-4 weeks 32%
6-8 weeks 5%
More than 8 weeks 5%
View more
Optum Global Solutions Software Engineer Salary
based on 2.9k salaries
₹10.4 L/yr - ₹18 L/yr
54% more than the average Software Engineer Salary in India
View more details

Optum Global Solutions Software Engineer Reviews and Ratings

based on 330 reviews

3.8/5

Rating in categories

3.5

Skill development

4.2

Work-life balance

3.3

Salary

4.1

Job security

3.8

Company culture

2.9

Promotions

3.4

Work satisfaction

Explore 330 Reviews and Ratings
Software Engineer - Mainframe Cobol ,CICS,JCL

Noida,

Gurgaon / Gurugram

5-10 Yrs

Not Disclosed

Software Engineer

Bangalore / Bengaluru

5-10 Yrs

Not Disclosed

Explore more jobs
Claims Associate
4.1k salaries
unlock blur

₹2 L/yr - ₹5 L/yr

Senior Software Engineer
3.4k salaries
unlock blur

₹15.9 L/yr - ₹26 L/yr

Software Engineer
2.9k salaries
unlock blur

₹10.4 L/yr - ₹18 L/yr

Medical Coder
1.7k salaries
unlock blur

₹2 L/yr - ₹5.8 L/yr

Senior Claims Associate
1.2k salaries
unlock blur

₹2.6 L/yr - ₹5.9 L/yr

Explore more salaries
Compare Optum Global Solutions with

Accenture

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Capgemini

3.7
Compare
write
Share an Interview