Upload Button Icon Add office photos

Filter interviews by

UnitedHealth Associate Software Engineer Interview Questions and Answers

Updated 6 Jan 2020

UnitedHealth Associate Software Engineer Interview Experiences

4 interviews found

I applied via Walk-in and was interviewed in Jul 2019. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Self introduction and most of the questions based on u r technical skills.java based questions and sql queries,DBMS questions related mostly

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and dont hesitate to sayu r answer whether it is right or wrong.

Interview Preparation Tips

Round: Test
Experience: The test consisted of Aptitude test for 40 marks and 3 questions from Algorithm.
Tips: Prepare by doing basic Aptitude like Puzzle/Basic Algorithm type problems/probability.
Duration: 60 minutes

Round: Technical Interview
Experience: Questions were asked about programming languages and my B.Tech projects and stuff.

Round: HR Interview
Experience: This round wasn't given much priority. They just asked me about myself.

General Tips: Read all core material given by BC. It won’t take much time and will be very helpful.
College Name: IIT MADRAS

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given SumYou are given an array/list ARR consisting ... read more
asked in Clarivate
Q2. Best time to buy and sell stock IIYou have been given stock value ... read more
Q3. Intersection of Two Arrays IIYou have been given two integer arra ... read more
asked in CGI Group
Q4. Frog JumpThere is a frog on the 1st step of an N stairs long stai ... read more
asked in Gainsight
Q5. Connect N Ropes With Minimum CostYou have been given 'N' ropes of ... read more

Interview Questionnaire 

3 Questions

  • Q1. Give a short intro about yourself
  • Ans. 

    I am a recent computer science graduate with experience in software development and a passion for learning new technologies.

    • Graduated with a degree in computer science

    • Experience in software development

    • Passionate about learning new technologies

  • Answered by AI
  • Q2. What do you know about our company?
  • Ans. 

    The company is a software development firm.

    • The company specializes in software development.

    • It has a team of experienced software engineers.

    • The company has worked on various projects for clients in different industries.

    • It is known for delivering high-quality software solutions.

    • The company values innovation and creativity in its work.

  • Answered by AI
  • Q3. Asked if there were any doubts regarding what the company does

Interview Preparation Tips

Round: Test
Experience: Mostly objective type questions were asked.
Tips: CAT and GRE preparation is helpful for such tests.

Round: Test
Experience: Mostly objective type questions were asked.

Round: Group Discussion
Experience: Asked students themselves to choose a topic.

Round: Interview
Experience: Talked about the points in the resume. HR Questions, personal questions were asked.

College Name: IIT MADRAS

Interview Preparation Tips

Round: Test
Experience: Written test consisting of aptitude problems and algorithms lasting an hour. The test included 40 marks of aptitude problems and 3 questions on algorithms
Tips: Importance is given to test and programming languages.Not much stress is given on the courses but analytical abilities are testedSolve puzzles and algorithm type questionsKnowledge about probability is very helpful
Duration: 60 minutes

Round: Interview
Experience: Interviewers look how fast you can pick up stuffInterview questions for the technical round were based upon BTP and programming languages.

Round: Interview
Experience: HR round is not intensive and had general HR questions.

College Name: IIT Madras

UnitedHealth interview questions for designations

 Software Engineer

 (12)

 Senior Software Engineer

 (4)

 Software Engineer Intern

 (1)

 Software Developer

 (5)

 Software Developer Intern

 (2)

 Software Engineering Lead

 (2)

 Softwaretest Engineer

 (2)

 Claims Associate

 (6)

Interview questions from similar companies

I applied via LinkedIn

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 

(3 Questions)

  • Q1. Coding questions related to DSA
  • Q2. Middle of the Linked list
  • Ans. 

    Finding the middle node of a linked list.

    • Traverse the linked list with two pointers, one moving twice as fast as the other.

    • When the fast pointer reaches the end, the slow pointer will be at the middle node.

    • If the linked list has even number of nodes, there will be two middle nodes.

    • In that case, choose either of the middle nodes as the result.

  • Answered by AI
  • Q3. Reverse words in a sentence
  • Ans. 

    Reverse words in a sentence

    • Split the sentence into words

    • Reverse the order of the words

    • Join the words back into a sentence

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to start a career at this company.No cons.work culture is great.very supportive staff

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

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

Round 1 - Coding Test 

Basic questions were asked . 2 coding questions

Round 2 - One-on-one 

(3 Questions)

  • Q1. Face to face round
  • Q2. Sorting techniques
  • Q3. Networking questions were asked
Round 3 - HR 

(1 Question)

  • Q1. Basic questions about how one can handle work and relationship with other colleagues.

Interview Preparation Tips

Interview preparation tips for other job seekers - Make basic strong

I was interviewed in Nov 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Easy

Timing : Afternoon(Around 12 Pm)
The interviewer started with his Introduction and later asked 2 DSA Questions.

  • Q1. Shortest Distance

    Ninjaland is a country consisting of ‘N’ states and ‘M’ paths. There are two types of paths that connect any two states. One is the normal path, and the other is a special path. Both path...

  • Ans. 

    1)First calculate how many steps you need to travel on the x-axis to reach the destination
    2)Then calculate how many steps you need to travel on the y-axis to reach the destination
    3)Add the no of steps you got from step1 and step2.

  • Answered by CodingNinjas
  • Q2.  Minimum Direction Changes

    Given a 2D grid having N Rows and M Columns. Each cell of the grid has a character among [ 'U', 'L', 'D', 'R' ] written on it, denoting Up, Left, ...

  • Ans. Graph based Solution

    As we know if we change the direction of a cell to any other neighbour to move from cell to its neighbour, then it will cost 1 change, and if we follow the given cell direction then it will cost 0 as we follow the same direction which is given. So now we can see that we have 4 choices at each cell to move to its neighbour by cost 1 or 0, and we can also say that if we make this choice as an edge i.e...

  • Answered by CodingNinjas
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Timing : Afternoon(Around 10 Am)
The interviewer started with his Introduction and later asked 2 DSA Questions.
1)Questions based on N-QUEEN 
2)Questions based on String Manipulation

  • Q1. N Queens

    You are given an integer 'N'. For a given 'N' x 'N' chessboard, find a way to place 'N' queens such that no queen can attack any other queen on the chessboard.

    A ...

  • Ans. Backtracking
    1. Instead of checking all the places on the chessboard, we can use backtracking and place queen row-wise or column-wise.
    2. Suppose we place queens row-wise, and we start with the very first row. Place the queen and move to the next row until either there is a solution or there are no viable cells left.
    3. As we backtrack, check to place the queen in the different columns of the same row.
    4. When we can place a queen at ...
  • Answered by CodingNinjas
  • Q2. String Transformation

    Given a string (STR) of length N, you have to create a new string by performing the following operation:

    Take the smallest character from the first 'K' characters of STR, re...

  • Ans. Brute Force Approach
    • Create a new “answer” string that will contain the modified string
    • While the input string's length is greater than 0
      • Find the minimum character in the first K characters of the string (or the entire string if its length is less than K)
      • Append that character to the “answer” string
      • Remove that character from the input string
    • Return the “answer” string
    Space Complexity: O(1)Explanation:

    O(1)

     

    Since we ar...

  • Answered by CodingNinjas
Round 3 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

Timing : Afternoon(Around 1 Pm)
The interviewer started with his Introduction and later asked 2 DSA Questions and CS fundamentals.
1)DSA Question : 2 sum(Leetcode)
2)Questions based on String Manipulation
3)MySQL Queries
4)OOPS concepts

  • Q1. Two Sum

    You are given an array of integers 'ARR' of length 'N' and an integer Target. Your task is to return all pairs of elements such that they add up to Target.

    Note:

    We cannot use th...
  • Ans. 

    1)Brute force : using 2 iterations(TC : O(N**2) , SC : O(1))
    2)Optimized way : Using an extra space like a dictionary.(TC : O(N) , SC : O(N))

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Associate Software Engineer in ChennaiEligibility criteriaNo Criteria, but having min CGPA>=6 is enough.Optum interview preparation:Topics to prepare for the interview - OOPS, SQL, DBMS, DSA(General Math, Arrays, Linked Lists, Trees, Graphs, BackTracking, DP)Time required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Make a proper schedule/ your own roadmap instead of depending on some random roadmap. 
Tip 2 : Practice the previous problems, keep an excel sheet to track the problems you have solved in the past.
Tip 3 : Consistency is the most important thing. Never underestimate yourself, you might take 1 month, 2 months or 8 months to prepare. But with right dedication, you will get placed at your dream company.

Application resume tips for other job seekers

Tip 1 : Mention what you know, what you are good at. 
Tip 2 : It would be good if the resume contains maximum two pages. One page would be perfect. Because companies would not go through the entire resume, they would try to find the important points only.

Final outcome of the interviewSelected

Skills evaluated in this interview

Round 1 - One-on-one 

(1 Question)

  • Q1. FInd the maximium capacity that a thief can thief can stole having W Knapsack capacity
  • Ans. 

    Find maximum capacity a thief can steal with W Knapsack capacity.

    • Use dynamic programming approach.

    • Sort items by their value-to-weight ratio.

    • Iterate through items and update maximum value that can be stolen.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just do basics oops, do simple programming question like reverse link list, array shifting. They are not gonna ask you very hard so just prepare all the basics and get prepared with that.

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 KIIT University, Bhuvaneshwar and was interviewed before Oct 2022. There were 5 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 - Aptitude Test 

Aptitude+Reasoning+Charts

Round 3 - Coding Test 

Arrays, Dynamic Programming, Trees

Round 4 - Technical 

(1 Question)

  • Q1. Projects + Core CS Topics + DBMS in depth
Round 5 - HR 

(1 Question)

  • Q1. Cultural Fit Questions + Basic Project Overview + Company background knowledge
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Sep 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

It was basic coding questions

Round 3 - HR 

(5 Questions)

  • Q1. Basic details were asked
  • Q2. Give me your intro
  • Q3. Why do you want to join
  • Q4. Some team discussion questions
  • Q5. When can you join

Tell us how to improve this page.

People are getting interviews through

based on 1 UnitedHealth interview
WalkIn
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Optum Interview Questions
4.0
 • 414 Interviews
Apollo Hospitals Interview Questions
4.1
 • 327 Interviews
R1 RCM Interview Questions
3.9
 • 267 Interviews
Fortis Healthcare Interview Questions
4.1
 • 122 Interviews
Narayana Health Interview Questions
4.2
 • 58 Interviews
SRL Diagnostics Interview Questions
4.1
 • 55 Interviews
View all
UnitedHealth Associate Software Engineer Salary
based on 156 salaries
₹3.8 L/yr - ₹15.8 L/yr
53% more than the average Associate Software Engineer Salary in India
View more details

UnitedHealth Associate Software Engineer Reviews and Ratings

based on 14 reviews

3.6/5

Rating in categories

3.4

Skill development

4.3

Work-Life balance

3.2

Salary & Benefits

4.4

Job Security

3.6

Company culture

3.0

Promotions/Appraisal

3.1

Work Satisfaction

Explore 14 Reviews and Ratings
Senior Software Engineer
1.4k salaries
unlock blur

₹8.5 L/yr - ₹30 L/yr

Claims Associate
1.1k salaries
unlock blur

₹1.6 L/yr - ₹5 L/yr

Software Engineer
878 salaries
unlock blur

₹5 L/yr - ₹18 L/yr

Senior Claims Associate
404 salaries
unlock blur

₹2.6 L/yr - ₹7 L/yr

Assistant Manager
290 salaries
unlock blur

₹6.2 L/yr - ₹12.6 L/yr

Explore more salaries
Compare UnitedHealth with

Anthem

3.6
Compare

Humang

2.0
Compare

Aetna

4.9
Compare

Centene Corporation

5.0
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview