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

36 Interview questions

A Software Developer was asked 2mo ago
Q. What is a join?
Ans. 

A join is a SQL operation that combines rows from two or more tables based on a related column.

  • Types of joins: INNER JOIN, LEFT JOIN, RIGHT JOIN, FULL JOIN.

  • INNER JOIN returns records with matching values in both tables.

  • LEFT JOIN returns all records from the left table and matched records from the right table.

  • Example: SELECT * FROM Orders INNER JOIN Customers ON Orders.CustomerID = Customers.CustomerID;

  • FULL JOIN re...

A Software Developer was asked 2mo ago
Q. What is an 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...

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 6mo ago
Q. What are the differences between a class, an abstract class, and an interface in Python?
Ans. 

Class is a blueprint for creating objects, abstract class cannot be instantiated and can have abstract methods, interface is a contract for classes to implement certain methods.

  • Class is a blueprint for creating objects with attributes and methods.

  • Abstract class cannot be instantiated and can have abstract methods that must be implemented by subclasses.

  • Interface is a contract for classes to implement certain method...

A Software Developer was asked 6mo ago
Q. What is one thing you want to experience?
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

What people are saying about Optum Global Solutions

View All
an ai ml engineer
4d
Need help to switch
Cognizant 21 lpa, 30 min travel, no traffic. LTI mindtree 24 Ipa, 1 hour travel, lot of traffic. Infosys 26 Ipa, 30 min travel, no traffic. Optum (Third Party) REMOTE 17 LPA. My last package was 10.5 LPA with 6.6 YOE. Have already joined optum it's been 2 weeks. got other offers after that. What should I do?
Got a question about Optum Global Solutions?
Ask anonymously on communities.
A Software Developer was asked 10mo ago
Q. Write code to implement debouncing.
Ans. 

Debouncing is a technique used to limit the rate at which a function is called.

  • Use a timer to delay the execution of a function until a certain amount of time has passed without the function being called again.

  • Reset the timer each time the function is called to prevent it from being executed multiple times in quick succession.

  • Debouncing is commonly used in scenarios like handling button clicks to prevent multiple ...

A Software Developer was asked 10mo ago
Q. What are closures in JavaScript?
Ans. 

Closures in JavaScript are functions that have access to variables from their outer scope even after the outer function has finished executing.

  • Closures allow for maintaining state in an asynchronous environment.

  • They are created whenever a function is defined within another function.

  • Closures can be used to create private variables and functions in JavaScript.

A Software Developer was asked 11mo ago
Q. Given an unsorted array of integers nums, return the length of the longest consecutive elements sequence.
Ans. 

Find the longest consecutive sequence in an array of integers.

  • Sort the array to make it easier to identify consecutive numbers.

  • Iterate through the array and keep track of the current consecutive sequence length.

  • Update the longest consecutive sequence length as you iterate through the array.

Are these interview questions helpful?
A Software Developer was asked
Q. What is the difference between an interface and an 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(); ...

A Software Developer was asked
Q. Given an array, find the next greater element for each element in the array. The Next Greater Element for an element x is the first greater element on the right side of x in the array.
Ans. 

Find the next maximum element in an array of strings.

  • Iterate through the array and keep track of the current maximum element.

  • Compare each element with the current maximum and update if a larger element is found.

  • Return the next maximum element after the current maximum.

🔥 Asked by recruiter 2 times
A Software Developer was asked
Q. Given the head of a singly linked list, reverse the list, and return the reversed list.
Ans. 

Reversing a linked list involves changing the direction of the pointers between nodes.

  • Iterative approach: Use three pointers (prev, current, next) to reverse links.

  • Example: For list 1 -> 2 -> 3, after reversal it becomes 3 -> 2 -> 1.

  • Recursive approach: Reverse the rest of the list and adjust pointers.

  • Example: Base case is when the list is empty or has one node.

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
  • Ans. 

    Relational DBMS stores data in tables with predefined relationships, while non-relational DBMS stores data in flexible, schema-less formats.

    • Relational DBMS uses structured query language (SQL) for querying data

    • Non-relational DBMS can store data in various formats like key-value pairs, document-based, graph databases

    • Relational DBMS ensures data integrity through normalization and constraints

    • Non-relational DBMS offers be...

  • Answered by AI
  • Q2. Difference betweeen class,abstract class,interface in python
  • Ans. 

    Class is a blueprint for creating objects, abstract class cannot be instantiated and can have abstract methods, interface is a contract for classes to implement certain methods.

    • Class is a blueprint for creating objects with attributes and methods.

    • Abstract class cannot be instantiated and can have abstract methods that must be implemented by subclasses.

    • Interface is a contract for classes to implement certain methods, bu...

  • Answered by AI
  • 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
  • Ans. 

    A join is a SQL operation that combines rows from two or more tables based on a related column.

    • Types of joins: INNER JOIN, LEFT JOIN, RIGHT JOIN, FULL JOIN.

    • INNER JOIN returns records with matching values in both tables.

    • LEFT JOIN returns all records from the left table and matched records from the right table.

    • Example: SELECT * FROM Orders INNER JOIN Customers ON Orders.CustomerID = Customers.CustomerID;

    • FULL JOIN returns...

  • Answered by AI
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 509 salaries
₹13.1 L/yr - ₹27 L/yr
86% more than the average Software Developer Salary in India
View more details

Optum Global Solutions Software Developer Reviews and Ratings

based on 51 reviews

3.8/5

Rating in categories

3.4

Skill development

4.0

Work-life balance

3.3

Salary

4.2

Job security

3.9

Company culture

3.0

Promotions

3.7

Work satisfaction

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

₹1.5 L/yr - ₹5.2 L/yr

Senior Software Engineer
3.3k salaries
unlock blur

₹9.9 L/yr - ₹34.7 L/yr

Software Engineer
2.7k 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

₹1.8 L/yr - ₹5.8 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