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 for Freshers

Updated 1 Jun 2025

19 Interview questions

A Software Developer was asked 11mo 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 11mo 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.

Software Developer Interview Questions Asked at Other Companies for Fresher

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Nagarro
Q2. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in Mr Cooper
Q3. Connect Ropes Problem Statement Given a number of ropes denoted a ... read more
asked in TCS
Q4. Palindromic Numbers Finder Given an integer 'N', your task is to ... read more
Q5. Validate Binary Tree Nodes Problem You are provided with 'N' bina ... read more
A Software Developer was asked
Q. How do you change the work object status of multiple cases from pending to closed?
Ans. 

To change work object status of multiple cases from pending to closed.

  • Identify the cases that need to be closed

  • Update the status of each case to closed

  • Save the changes made to the cases

  • Use a loop to perform the above steps for multiple cases

  • Example: Use a query to identify all cases with pending status and update their status to closed

A Software Developer was asked
Q. Why are blocked rules carried forward?
Ans. 

Blocked rules are carry forward to ensure consistency and prevent errors in future processing.

  • Blocked rules are rules that have been prevented from executing due to certain conditions not being met.

  • These rules are carried forward to ensure that they are not missed in future processing.

  • This helps to maintain consistency and prevent errors in the system.

  • For example, if a rule is blocked due to a missing data field, ...

What people are saying about Optum Global Solutions

View All
a senior software engineer
1w
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. What is the difference between append to and append to map to?
Ans. 

Append to adds an element to a list while append to map adds a key-value pair to a map.

  • Append to is used for lists while append to map is used for maps.

  • Append to adds an element to the end of the list while append to map adds a key-value pair to the map.

  • Append to map can also update the value of an existing key in the map.

A Software Developer was asked
Q. What is the difference between a queue processor and a job scheduler?
Ans. 

Queue processor manages tasks in a queue while job scheduler schedules tasks based on time or event triggers.

  • Queue processor manages tasks in a queue and processes them in a first-in, first-out (FIFO) order.

  • Job scheduler schedules tasks based on time or event triggers, and can prioritize tasks based on their importance.

  • Queue processor is typically used for real-time processing of tasks, while job scheduler is used...

A Software Developer was asked
Q. What is the use of privileges?
Ans. 

Privileges are permissions granted to users or processes to perform specific actions or access certain resources.

  • Privileges are used to control access to sensitive data or critical system resources.

  • They can be assigned to individual users or groups.

  • Examples include read, write, execute, and delete permissions.

  • Privileges can also be used to restrict access to certain functions or features within an application.

  • With...

Are these interview questions helpful?
A Software Developer was asked
Q. What is the difference between obj open and obj open by handle?
Ans. 

obj open vs obj open by handle

  • obj open opens a file and returns a file object

  • obj open by handle opens a file using a file descriptor

  • obj open by handle is faster than obj open

  • obj open by handle is used when you already have a file descriptor

A Software Developer was asked
Q. Use of superclass data transform check box
Ans. 

Superclass data transform checkbox is used to inherit data transform rules from a parent class.

  • When checked, the subclass will inherit the data transform rules from the superclass

  • This can save time and effort in creating duplicate data transform rules

  • Example: A superclass has a data transform rule to convert a date format, when the checkbox is checked in a subclass, it will also use the same rule

  • This checkbox is a...

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

Optum Global Solutions Software Developer Interview Experiences for Freshers

7 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic aptitude number theory

Software Developer Interview Questions & Answers

user image Abhishek Tyagi

posted on 8 Aug 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Code on de bounce and coding on closer

Round 2 - Technical 

(2 Questions)

  • Q1. What are closer in js
  • 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.

  • Answered by AI
  • Q2. Write a code on 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 rapid...

  • Answered by AI

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed before Mar 2021. There were 2 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 

(9 Questions)

  • Q1. What is the difference between obj open and obj open by handle
  • Ans. 

    obj open vs obj open by handle

    • obj open opens a file and returns a file object

    • obj open by handle opens a file using a file descriptor

    • obj open by handle is faster than obj open

    • obj open by handle is used when you already have a file descriptor

  • Answered by AI
  • Q2. How to change the work object status of the multiple cases from pending to closed.
  • Ans. 

    To change work object status of multiple cases from pending to closed.

    • Identify the cases that need to be closed

    • Update the status of each case to closed

    • Save the changes made to the cases

    • Use a loop to perform the above steps for multiple cases

    • Example: Use a query to identify all cases with pending status and update their status to closed

  • Answered by AI
  • Q3. Why blocked rules are carry forward
  • Ans. 

    Blocked rules are carry forward to ensure consistency and prevent errors in future processing.

    • Blocked rules are rules that have been prevented from executing due to certain conditions not being met.

    • These rules are carried forward to ensure that they are not missed in future processing.

    • This helps to maintain consistency and prevent errors in the system.

    • For example, if a rule is blocked due to a missing data field, it wi...

  • Answered by AI
  • Q4. What is the use of previliges
  • Ans. 

    Privileges are permissions granted to users or processes to perform specific actions or access certain resources.

    • Privileges are used to control access to sensitive data or critical system resources.

    • They can be assigned to individual users or groups.

    • Examples include read, write, execute, and delete permissions.

    • Privileges can also be used to restrict access to certain functions or features within an application.

    • Without p...

  • Answered by AI
  • Q5. Last Project related questions
  • Q6. SLA related questions
  • Q7. Queue processor and job schedule difference
  • Q8. Difference between append to and append to map to
  • Ans. 

    Append to adds an element to a list while append to map adds a key-value pair to a map.

    • Append to is used for lists while append to map is used for maps.

    • Append to adds an element to the end of the list while append to map adds a key-value pair to the map.

    • Append to map can also update the value of an existing key in the map.

  • Answered by AI
  • Q9. Use of superclass data transform check box
  • Ans. 

    Superclass data transform checkbox is used to inherit data transform rules from a parent class.

    • When checked, the subclass will inherit the data transform rules from the superclass

    • This can save time and effort in creating duplicate data transform rules

    • Example: A superclass has a data transform rule to convert a date format, when the checkbox is checked in a subclass, it will also use the same rule

    • This checkbox is availa...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Working culture in optum is very good. There will be three rounds of of interview. One technical and one technical manager round last one is HR round.

Skills evaluated in this interview

I appeared for an interview in Nov 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

It was around 4 pm in the evening and it includes both MCQs and coding questions. Hackerrank platform was user friendly and good.

  • Q1. 

    Maximum XOR Problem Statement

    You are given an integer X. Your goal is to find an integer Y such that the bitwise XOR of X and Y yields the maximum possible value. The integer Y must not exceed 2305843009...

  • Ans. 

    Find an integer Y such that XOR of X and Y yields maximum value within given constraints.

    • Iterate through each test case and find the maximum possible Y by flipping all bits of X except the most significant bit.

    • The maximum value of Y is 2^61 - 1, which is 2305843009213693951.

    • Ensure that the obtained Y does not exceed the given constraints.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 40 minutes
Round difficulty - Medium

30-40 minutes interview round.

  • Q1. 

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

  • Answered by AI
  • Q2. How can you measure 9 minutes using only a 4-minute hourglass and a 7-minute hourglass?
Round 3 - Video Call 

(1 Question)

Round duration - 40 minutes
Round difficulty - Medium

Resume based round and some technical concepts were asked

  • Q1. How can you find the 5th highest salary in a list of salaries using a SQL query?
  • Ans. 

    Use SQL query with ORDER BY and LIMIT to find the 5th highest salary.

    • Use ORDER BY clause to sort salaries in descending order

    • Use LIMIT 4,1 to skip the first 4 salaries and get the 5th highest salary

  • Answered by AI
Round 4 - HR 

Round duration - 20 minutes
Round difficulty - Easy

Easiest of all was the HR round.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in HyderabadEligibility criteriaAbove 7 CGPAOptum interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Object-Oriented Programming, Database Management System, Operating System, Computer NetworksTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Practice DSA as much as you can, try solving medium level questions because a clear understanding of DSA is a must.
Tip 2 : Do concepts of DBMS theoretical as well as SQL query, keep reviewing along with OOPs concepts.
Tip 3 : Few days before the interview practice and review OS important concepts along with networking.

Application resume tips for other job seekers

Tip 1 : Make good projects that cover object-oriented as well as database concepts ( web, android, ML, or any other technology), do at least 2 major projects for a good resume
Tip 2 : Make it simple and be honest, only mention what you know also it is good to mention both technical and non-technical skills.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview before Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 75 minutes
Round difficulty - Medium

  • Q1. 

    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.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 40 minutes
Round difficulty - Medium

  • Q1. 

    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 substring...

  • 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

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Medium

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from TIET - Thapar Institute of Engineering And Technology. I applied for the job as SDE - 1 in HyderabadEligibility criteria7 CGPAOptum interview preparation:Topics to prepare for the interview - Data Structures, Computer Networks, Operating Systems, Algorithms, DBMSTime required to prepare for the interview - 8 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice coding questions
Tip 2 : Prepare data structures well

Application resume tips for other job seekers

Tip 1 : Mention good projects
Tip 2 : Do not put false information

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview in Oct 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 75 min
Round difficulty - Medium

This round was MCQ and coding round. 25 MCQs and one coding question were asked. MCQs were based on OS, DBMS, Aptitude and Data Structures.

  • Q1. 

    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.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 30 min
Round difficulty - Easy

This was a Data Structural round. Only one coding question was asked by the interviewer. The interviewer was very friendly. This round was very easy.

  • Q1. 

    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' r...
  • 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].

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from TIET - Thapar Institute of Engineering And Technology. I applied for the job as SDE - 1 in GurgaonEligibility criteria8Optum interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS,Dynamic Programminng,Operating System,DBMSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Be confident! 
Tip 2 : Maintain high Cgpa
Tip 3 : Do your best

Application resume tips for other job seekers

Tip 1 : Mention clear points
Tip 2 : Atleast 3 projects and never put anything you have not revised

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 75 minutes
Round difficulty - Medium

It was in the evening.
It consisted of 26 questions of easy to hard level.
It consisted of 25 MCQs and only 1 coding problem.

  • Q1. 

    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 tes...
  • 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 and a...

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 15 minutes
Round difficulty - Medium

It was more of CV based round. A brief discussion on projects was there followed by some questions like why optum.

  • Q1. 

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

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 15 minutes
Round difficulty - Easy

A short round where some basic dbms questions like procedure, cursor were asked. Then some questions on whether I would prefer working alone or in a team. Where I see myself in 5 years.

  • Q1. 

    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 adjacen...

  • 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 each co...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 8 CGPA, Computer oriented branchesOptum interview preparation:Topics to prepare for the interview - DBMS, Data Structures, Algorithms, Puzzles, Operating Systems, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Projects do not matter much for this company.
Tip 2 : I did almost all the puzzles from Interviewbit.
Tip 3 : DBMS is really important. Practice queries in SQL thoroughly. You should know the use of limit and top also. It may be asked to write the same query in more than 1 form.
Tip 4 : Practice all the data structures. Questions were simple and you should know the basics of every data structure.

Application resume tips for other job seekers

Tip 1 : Don't write anything just for the sake of it.
Tip 2 : If you are writing some project then be thorough with all the details. If you are not much confident, then simply remove it and focus on other subjects.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

I applied via LinkedIn and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Easy logical questions
basic quant

Round 2 - Coding Test 

Easy level coding questions
Counting frequency of alphabets

Interview Preparation Tips

Interview preparation tips for other job seekers - Just go through the basics of javascript
Hoisting

Interview Questionnaire 

1 Question

  • Q1. How to use multiple dispatch in redux?
  • Ans. 

    Multiple dispatch is not a feature of Redux. It can be achieved using middleware or custom logic.

    • Middleware like redux-thunk or redux-saga can be used to dispatch multiple actions based on a single action.

    • Custom logic can be implemented in the reducer to handle multiple actions based on a single action type.

    • For example, a single 'ADD_ITEM' action can trigger multiple actions like 'UPDATE_TOTAL', 'UPDATE_HISTORY', etc.

    • M...

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Sep 2019. There were 6 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. IQ Test
  • Q2. Machine Test
  • Q3. Face To Face

Interview Preparation Tips

Interview preparation tips for other job seekers - basically there are 3 rounds:-
1. IQ Test
2. Machine Test
3. Face to Face

IQ Test is not so tough but prepare well Machine Test
Machine Test Question are like :-
Q.1 - We declare a variable in C++ like "is_this_a_variable" and in Java like "IsThisAVariable". There is underscore in between every word and first alphabet of every word is in lowercase in C++ and in Java first alphabet is in capital without underscore. Create a program in which if user input a string in a C++ variable format it will convert the input in java variable format.

Q2. Count the frequency of a string.
user input string - pqhphi
output-
p - 2
q - 1
h - 2
i - 1

Be strong in algorithms and data structure.

Optum Global Solutions Interview FAQs

How many rounds are there in Optum Global Solutions Software Developer interview for freshers?
Optum Global Solutions interview process for freshers usually has 1-2 rounds. The most common rounds in the Optum Global Solutions interview process for freshers are Technical, Resume Shortlist and Coding Test.
How to prepare for Optum Global Solutions Software Developer interview for freshers?
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 for freshers?

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

  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. Difference between append to and append to map...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

5/5

based on 2 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
Optum Global Solutions Software Developer Salary
based on 518 salaries
₹13.5 L/yr - ₹25.8 L/yr
81% 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 L/yr

Senior Software Engineer
3.3k salaries
unlock blur

₹15.9 L/yr - ₹26 L/yr

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