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 Developer Interview Questions and Answers

Updated 1 Jun 2025

32 Interview questions

A Software Developer was asked
Q. Can you explain the different levels of data abstraction in a DBMS?
Ans. 

Data abstraction in a DBMS involves hiding complex details from users, allowing them to interact with data at different levels of complexity.

  • Data abstraction in DBMS involves three levels: Physical level, Logical level, and View level.

  • Physical level deals with how data is stored on the storage medium, including details like data structures and file formats.

  • Logical level defines the structure of the database, inclu...

A Software Developer was asked
Q. 

Count Pairs Problem Statement

You are given an array A of length N consisting only of integers. Additionally, you are provided with three integers X, Y and SUM. Your task is to count the number of pairs (i...

Ans. 

Count the number of pairs in an array that satisfy a given equation.

  • Iterate through all pairs of indices in the array and check if the equation is satisfied.

  • Use a hashmap to store the frequency of values that can be used to form pairs.

  • Optimize the solution by using two pointers approach to find pairs efficiently.

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Rakuten
Q2. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Amazon
Q3. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
A Software Developer was asked
Q. 

Longest Palindromic Substring Problem Statement

You are provided with a string STR of length N. The task is to find the longest palindromic substring within STR. If there are several palindromic substrings...

Ans. 

Find the longest palindromic substring in a given string.

  • Iterate through the string and expand around each character to find palindromes

  • Keep track of the longest palindrome found so far

  • Return the longest palindromic substring

A Software Developer was asked
Q. 

Array Intersection Problem Statement

Given two integer arrays/ lists ARR1 and ARR2 of sizes N and M respectively, you are required to determine their intersection. An intersection is defined as the set of ...

Ans. 

Find the intersection of two integer arrays/lists in the order they appear in the first array/list.

  • Iterate through the elements of the first array/list and check if they exist in the second array/list.

  • Use a hash set to store elements of the first array/list for efficient lookups.

  • Print the common elements in the order they appear in the first array/list.

What people are saying about Optum Global Solutions

View All
a senior software engineer
5d
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 Developer was asked
Q. 

Author and Books Formatting

Given a structured list of books and their authors, format the information as specified.

Input:

The first line of input contains an integer ‘T' representing the number of test...
Ans. 

The task is to format a list of authors and their books in a specific way as per the given input format.

  • Parse the input to extract the number of test cases, number of authors, author names, and their respective books.

  • Format the output by printing the author names and their books in the specified format.

  • Ensure correct sequence and labeling of authors and books as per the example provided.

  • Handle multiple test cases ...

A Software Developer was asked
Q. 

Graph Coloring Problem

You are given a graph with 'N' vertices numbered from '1' to 'N' and 'M' edges. Your task is to color this graph using two colors, such as blue and red, in a way that no two adjacent...

Ans. 

Given a graph with 'N' vertices and 'M' edges, determine if it can be colored using two colors without adjacent vertices sharing the same color.

  • Use graph coloring algorithm like BFS or DFS to check if the graph can be colored with two colors without conflicts.

  • Check if any adjacent vertices have the same color. If so, it is not possible to color the graph as described.

  • If the graph has connected components, color ea...

A Software Developer was asked
Q. 

Delete a Node from a Linked List

You are provided with a linked list of integers. Your task is to implement a function that deletes a node located at a specified position 'POS'.

Input:

The first line con...
Ans. 

Implement a function to delete a node from a linked list at a specified position.

  • Traverse the linked list to find the node at the specified position.

  • Update the pointers of the previous and next nodes to skip the node to be deleted.

  • Handle edge cases such as deleting the head or tail of the linked list.

  • Ensure to free the memory of the deleted node to avoid memory leaks.

Are these interview questions helpful?
A Software Developer was asked
Q. 

Minimum Days to Complete Work

You have 'N' tasks to complete. Each task can only be done on one of two specific days provided in two arrays: day1 and day2.

For each task i, day1[i] represents the earliest ...

Ans. 

Find the minimum number of days required to complete all tasks given specific completion days for each task.

  • Sort the tasks based on day1 in ascending order.

  • For each task, choose the minimum of day1 and day2 as the completion day.

  • Keep track of the maximum completion day for each task.

  • The final answer is the maximum completion day of all tasks.

A Software Developer was asked
Q. 

Bubble Sort Problem Statement

Sort the given unsorted array consisting of N non-negative integers in non-decreasing order using the Bubble Sort algorithm.

Input:

The first line contains an integer 'T' re...
Ans. 

Bubble Sort algorithm is used to sort an array of non-negative integers in non-decreasing order.

  • Implement the Bubble Sort algorithm to sort the array in place.

  • Compare adjacent elements and swap them if they are in the wrong order.

  • Repeat this process until the array is sorted.

  • Time complexity of Bubble Sort is O(n^2) in the worst case.

  • Example: For input [6, 2, 8, 4, 10], the output should be [2, 4, 6, 8, 10].

A Software Developer was asked
Q. 

Kth Largest Element Problem

Given an array containing N distinct positive integers and a number K, determine the Kth largest element in the array.

Example:

Input:
N = 6, K = 3, array = [2, 1, 5, 6, 3, 8...
Ans. 

Find the Kth largest element in an array of distinct positive integers.

  • Sort the array in non-increasing order to easily find the Kth largest element.

  • Ensure all elements in the array are distinct for accurate results.

  • Handle multiple test cases efficiently by iterating through each case.

Optum Global Solutions Software Developer Interview Experiences

26 interviews found

Software Developer Interview Questions & Answers

user image Preeti Charishma

posted on 26 Nov 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Aptitude, core concepts and a code

Round 2 - HR 

(2 Questions)

  • Q1. What is the one thing you learnt from college club?
  • Ans. 

    I learned the importance of teamwork and collaboration from my college club.

    • Developed strong communication skills by working with diverse group of individuals

    • Learned how to delegate tasks effectively to achieve common goals

    • Gained experience in problem-solving and conflict resolution through group projects

  • Answered by AI
  • Q2. What is the one thing you want to expereince?
  • Ans. 

    I want to experience living in a different country and immersing myself in a new culture.

    • Traveling to a foreign country and learning about their customs and traditions

    • Trying new foods and experiencing different ways of life

    • Making friends with locals and exploring the local attractions

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. Difference between relational and non relational dbms
  • Q2. Difference betweeen class,abstract class,interface in python
  • Q3. Project related questions were asked

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Performace optimization, caching, redis
  • Q2. Immutable class, single ton pattern
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Core Java Questions
  • Q2. Spring Boot Questions
Round 2 - Technical 

(2 Questions)

  • Q1. HighLevelDesign Questions
  • Q2. Basic Docker questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Big data Architecture
Round 2 - Technical 

(1 Question)

  • Q1. Data modeling questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong with your resumer
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Technical round was really good

Round 2 - Technical 

(5 Questions)

  • Q1. What is binary search
  • Ans. 

    Binary search is a search algorithm that finds the position of a target value within a sorted array.

    • Divide and conquer approach

    • Compares target value with middle element of array

    • If target value is smaller, search left half; if larger, search right half

    • Repeat process until target value is found or subarray is empty

  • Answered by AI
  • Q2. Binary search and time
  • Q3. What is linked list
  • Ans. 

    A linked list is a data structure consisting of nodes where each node contains a data field and a reference to the next node in the sequence.

    • Linked list elements are not stored in contiguous memory locations like arrays.

    • Each node in a linked list contains data and a reference to the next node.

    • Linked lists can be singly linked (each node points to the next node) or doubly linked (each node points to both the next and pr...

  • Answered by AI
  • Q4. Tree data structure
  • Q5. Avl tree and write code

Interview Preparation Tips

Interview preparation tips for other job seekers - keep coding

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
  • Q1. What is index in sql server
  • Ans. 

    An index in SQL Server is a database object that improves the speed of data retrieval operations on a table.

    • Indexes are similar to a book's index, allowing quick access to data without scanning the entire table.

    • There are two main types of indexes: clustered and non-clustered. A clustered index determines the physical order of data.

    • Example of a clustered index: If a table has a primary key, SQL Server automatically crea...

  • Answered by AI
  • Q2. What is join
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Difference between interface and abstract class
  • Ans. 

    Interface is a contract with no implementation, while abstract class can have some implementation.

    • Interface cannot have any implementation, only method signatures.

    • Abstract class can have both abstract methods and concrete methods.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Interfaces are used to achieve multiple inheritance in Java.

    • Example: interface Shape { void draw(); } abs...

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

Basic aptitude number theory

Software Developer Interview Questions & Answers

user image Arvind Kumar

posted on 12 Jun 2024

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

I applied via Referral and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Resume related questions were asked
  • Q2. Mentioned skills related questions were asked
Round 2 - Technical 

(1 Question)

  • Q1. Java backend technology related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare you resume whatever you have mentioned
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test of 1hr, logical reasoning and dat interpretation questions were asked of intermediate difficulty

Round 2 - Coding Test 

2 basic coding questions in 30mins

Round 3 - Technical 

(2 Questions)

  • Q1. Basic DSA related questions like merge sort implementation
  • Q2. Questions on OOPS concept and DBMS

Optum Global Solutions Interview FAQs

How many rounds are there in Optum Global Solutions Software Developer interview?
Optum Global Solutions interview process usually has 1-2 rounds. The most common rounds in the Optum Global Solutions interview process are Technical, Coding Test and Aptitude Test.
How to prepare for Optum Global Solutions Software Developer 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 Azure Functions, Kafka, Microservices, Redis and Spring MVC.
What are the top questions asked in Optum Global Solutions Software Developer interview?

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

  1. What is the difference between obj open and obj open by han...read more
  2. How to change the work object status of the multiple cases from pending to clos...read more
  3. What is the one thing you want to experein...read more
How long is the Optum Global Solutions Software Developer interview process?

The duration of Optum Global Solutions Software Developer 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/5

based on 19 interview experiences

Difficulty level

Easy 20%
Moderate 80%

Duration

Less than 2 weeks 50%
2-4 weeks 30%
4-6 weeks 10%
6-8 weeks 10%
View more
Optum Global Solutions Software Developer Salary
based on 522 salaries
₹13.6 L/yr - ₹27 L/yr
83% more than the average Software Developer Salary in India
View more details

Optum Global Solutions Software Developer Reviews and Ratings

based on 52 reviews

3.7/5

Rating in categories

3.3

Skill development

4.0

Work-life balance

3.2

Salary

4.3

Job security

3.8

Company culture

2.9

Promotions

3.6

Work satisfaction

Explore 52 Reviews and Ratings
Claims Associate
4.1k salaries
unlock blur

₹2 L/yr - ₹5.1 L/yr

Senior Software Engineer
3.3k salaries
unlock blur

₹15.8 L/yr - ₹26 L/yr

Software Engineer
2.8k salaries
unlock blur

₹6.5 L/yr - ₹24 L/yr

Medical Coder
1.7k salaries
unlock blur

₹1.1 L/yr - ₹6.5 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.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Capgemini

3.7
Compare
write
Share an Interview