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 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

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. Longest Substring Without Repeating Characters Problem Statement Given a string S of length L , determine the length of the longest substring that contains no repeating ...read more
  • Q2. 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
  • Q3. 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
View all 35 questions

Optum Global Solutions Software Developer Interview Experiences

26 interviews found

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Linked lists, Arrays and strings

Round 2 - Technical 

(2 Questions)

  • Q1. Reverse a string
  • Ans. 

    Reverse a given string

    • Use a loop to iterate through the characters of the string

    • Append each character to a new string in reverse order

    • Return the reversed string

  • Answered by AI
  • Q2. Find the kth element in an array
  • Ans. 

    Find the kth element in an array

    • Use array indexing to access the kth element

    • Remember that array indices start from 0

    • Handle cases where k is out of bounds of the array

  • Answered by AI

Skills evaluated in this interview

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

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 Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at National Institute of Technology (NIT), Jamshedpur and was interviewed before Jul 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude question and ds algo

Round 2 - Technical 

(2 Questions)

  • Q1. Database normalisation
  • Q2. Longest Consecutive 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.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for ds and algo

Skills evaluated in this interview

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

I applied via campus placement at Vellore Institute of Technology (VIT) and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Discussed complex joins in SQL as well as the internal working mechanisms and what makes it stand out from other distributed noSQL databases
  • Q2. Also was asked implementation of insertion sort, variation of 2-sum and top view of a binary tree

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)

 AEM Developer

 (1)

 Javascript Developer

 (1)

 Trainee Developer

 (1)

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

I applied via Referral and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Find next max element
  • 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.

  • Answered by AI
  • Q2. 2 data structure question
  • Q3. Reverse linkedlist

Skills evaluated in this interview

Get interview-ready with Top Optum Global Solutions Interview Questions

I was interviewed in Nov 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

2 Programing Questions and 30 MCQs. 
Programing questions were medium with one being array manipulation and other being graph based. 

MCQ were from OOPs concepts, SQL, Operating System and Network, prepare in depth knowledge for all the topics.

  • 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 task is to count the number of pairs (...

  • Ans. 

    Using HashMap or self balancing BST for fastest result.

  • Answered Anonymously
  • Q2. 

    Longest Substring Without Repeating Characters Problem Statement

    Given a string S of length L, determine the length of the longest substring that contains no repeating characters.

    Example:

    Input:
    "abac...
  • Ans. Brute Force

    In the brute force approach, we will use two nested loops. The outer loop is used to select the starting index of the substring and the inner loop is used to fix the ending index of the substring. After selecting the substring, we will use another loop (or a method) to check whether the substring contains all unique characters or not using a HashSet.

    Space Complexity: O(n)Explanation:

    O(L), where L is the len...

  • Answered Anonymously
Round 2 - Face to Face 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Questions on SQL and DBMS were asked in this round

  • Q1. What are the ACID properties in DBMS?
  • Q2. Can you explain the different levels of data abstraction in a DBMS?
  • Q3. What are constraints in SQL?
Round 3 - HR 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

HR round was pretty much a casual conversation about why optum, work location, joining availablity and what qualities you would like to highlight about yourself.

  • Q1. Why do you want to work at Optum, and what qualities would you like to highlight?
  • Ans. 

    Tip 1 : Go through wiki page or google about the working of the company
    Tip 2 : Qualities should more aligned to the company's values.
    Tip 3 : Show your interest in working with the organisation and how will you contribute to the team.

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from DELHI INSTITUTE OF TOOL ENGINEERING. I applied for the job as SDE - 1 in HyderabadEligibility criteriaAbove 7.5 CGPAOptum Global Solutions India Private Limited interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPS, DBMS, SQLTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.

Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.

Tip 3 : Do at-least 2 good projects and you must know every bit of them.


 

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.

Tip 2 : Every skill must be mentioned.

Tip 3 : Focus on skills, projects and experiences more.


 

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jan 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic architecture related questions
  • Q2. Application Architecture

Interview Preparation Tips

Topics to prepare for Optum Global Solutions Software Developer interview:
  • Architecture
Interview preparation tips for other job seekers - Test

Software Developer interview

user image PlaceXP

posted on 19 Nov 2021

I applied via Campus Placement and was interviewed in May 2022. 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 - Assignment 

Every thing realted job

Round 3 - HR 

(1 Question)

  • Q1. Any thing about knowledge communication skills etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Conduct good interview for freshers and bring discussion about the candidate
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Aug 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - HR 

(1 Question)

  • Q1. Notice period, expected CTC
Round 3 - One-on-one 

(1 Question)

  • Q1. Explain your projects done in college

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

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

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 361 salaries
₹6 L/yr - ₹21 L/yr
69% 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

₹1.6 L/yr - ₹6 L/yr

Senior Software Engineer
2.8k salaries
unlock blur

₹9.7 L/yr - ₹32 L/yr

Software Engineer
2.6k salaries
unlock blur

₹6.2 L/yr - ₹22 L/yr

Medical Coder
1.2k salaries
unlock blur

₹1.5 L/yr - ₹8 L/yr

Senior Claims Associate
1.2k salaries
unlock blur

₹2.1 L/yr - ₹5.8 L/yr

Explore more salaries
Compare Optum Global Solutions with

Cognizant

3.8
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