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 Interview Questions, Process, and Tips

Updated 2 Jan 2025

Top Optum Global Solutions Software Developer Interview Questions and Answers

  • Q1. 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 t ...read more
  • Q2. 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 positio ...read more
  • Q3. 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 in ...read more
View all 35 questions

Optum Global Solutions Software Developer Interview Experiences

24 interviews found

I was interviewed 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 was interviewed 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

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 Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more

I was interviewed 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 Questionnaire 

1 Question

  • Q1. Basic questions related to skillset

Optum Global Solutions interview questions for designations

 Software Developer Intern

 (3)

 Senior Software Developer

 (1)

 Full Stack Software Developer

 (3)

 Software Engineer

 (41)

 Java Developer

 (3)

 Trainee Developer

 (1)

 AEM Developer

 (1)

 RPA Developer

 (1)

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

Recently Viewed

INTERVIEWS

Optum Global Solutions

No Interviews

INTERVIEWS

HCLTech

No Interviews

COMPANY BENEFITS

Adani Ports and SEZ

No Benefits

INTERVIEWS

Optum Global Solutions

No Interviews

INTERVIEWS

Texas Instruments

No Interviews

INTERVIEWS

Optum Global Solutions

No Interviews

REVIEWS

Adani Ports and SEZ

No Reviews

REVIEWS

Adani Ports and SEZ

No Reviews

REVIEWS

Adani Ports and SEZ

No Reviews

REVIEWS

Adani Ports and SEZ

No Reviews

Tell us how to improve this page.

Optum Global Solutions Software Developer Interview Process

based on 17 interviews

3 Interview rounds

  • Coding Test Round
  • Technical Round
  • HR Round
View more
Optum Global Solutions Software Developer Salary
based on 381 salaries
₹6 L/yr - ₹21 L/yr
68% more than the average Software Developer Salary in India
View more details

Optum Global Solutions Software Developer Reviews and Ratings

based on 50 reviews

3.8/5

Rating in categories

3.4

Skill development

3.9

Work-life balance

3.2

Salary

4.2

Job security

3.8

Company culture

2.9

Promotions

3.7

Work satisfaction

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

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
2.9k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
2.6k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Medical Coder
1.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Claims Associate
1.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Optum Global Solutions with

Cognizant

3.7
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