Upload Button Icon Add office photos

Filter interviews by

UnitedHealth Software Developer Intern Interview Questions, Process, and Tips

Updated 16 Sep 2021

Top UnitedHealth Software Developer Intern Interview Questions and Answers

  • Q1. Copy and Reverse the Array Given an array of non-negative integers ARR , your task is to create another array COPY_ARR with the elements of ARR in reverse order. Input: ...read more
  • Q2. Maximize Stock Trading Profit You are given an array prices , representing stock prices over N consecutive days. Your goal is to compute the maximum profit achievable by ...read more
  • Q3. Reverse Linked List Problem Statement Given a singly linked list of integers, return the head of the reversed linked list. Example: Initial linked list: 1 -> 2 -> 3 -> 4 ...read more
View all 6 questions

UnitedHealth Software Developer Intern Interview Experiences

2 interviews found

I was interviewed in Oct 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

The timings of the 1st round were 11 am to 12 noon. It was a proctored online test using a friendly hackerrank platform to conduct the test. The test was smooth and went well. There were questions from different sections.

  • Q1. 

    Maximize Stock Trading Profit

    You are given an array prices, representing stock prices over N consecutive days. Your goal is to compute the maximum profit achievable by performing multiple transactions (i...

  • Ans. 

    Initially I used many techniques but was not able to get satisfactory results. Then I used the dynamic programming approach to solve this.

  • Answered Anonymously
Round 2 - Coding Test 

(1 Question)

Round duration - 40 minutes
Round difficulty - Medium

Involved solving coding questions basic interaction and some questions from oops and my resume

  • Q1. 

    Copy and Reverse the Array

    Given an array of non-negative integers ARR, your task is to create another array COPY_ARR with the elements of ARR in reverse order.

    Input:

    The first line contains an integer T ...
  • Ans. 

    I reversed the array using loop and then copied its content and then printed the contents of new array

  • Answered Anonymously
Round 3 - Video Call 

(2 Questions)

Round duration - 40 minutes
Round difficulty - Medium

It was like an interaction round between the technical manager and us.

  • Q1. What are the differences between fragmentation and segmentation in operating systems?
  • Ans. 

    Tip 1 : study for concepts thorougly
     

  • Answered Anonymously
  • Q2. What are some SQL queries and JOIN operations you have worked with in your database management projects?
  • Ans. 

    Tip 1 : practice sql queries
     

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from TIET - Thapar Institute of Engineering And Technology. Eligibility criteriaAbove 7 CGPA,UnitedHealth Group interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, Algorithms, Operating Systems, Database management system and computer networksTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Study each subject deeply. Have your basics strong.
Tip 2 : Practice coding questions daily
 

Application resume tips for other job seekers

Tip 1 : Go through your resume thoroughly, and be ready to answer questions from your resume.
Tip 2 : Include some projects

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

There were 30 MCQ questions and 2 coding problems. The MCQs were medium-level questions. Coding problems were fairly easy.

  • Q1. 

    Reverse Linked List Problem Statement

    Given a singly linked list of integers, return the head of the reversed linked list.

    Example:

    Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
    Reversed link...
  • Ans. 

    1.) Maintained a 'prev' pointer and 'temp' pointer.
    2.) Iterated the list and saved the next pointer of the current node as temp and assigned current->next = prev and then, prev = current, this is the general approach for reversing the list.
    3.) Returned prev

  • Answered Anonymously
Round 2 - Face to Face 

(1 Question)

Round duration - 50 minutes
Round difficulty - Medium

The interview was scheduled by the placement cell in the evening. The interviewer seemed to be an experienced developer.
He asked me general background questions like what are you interested most in? what are your technical interests? etc.
He then asked me about my project. Explained him well on that front and he seemed satisfied. He asked me to find the Lowest Common Ancestor of a given Binary Search Tree. I solved it in around 20-30 minutes and he finally asked me to write the solution on paper. He asked some practical OOPs problems for a while and I answered correctly but the explanations could be more thorough.

  • Q1. 

    LCA of Binary Tree Problem Statement

    You are given a binary tree consisting of distinct integers and two nodes, X and Y. Your task is to find and return the Lowest Common Ancestor (LCA) of these two nodes...

  • Ans. 

    This problem was alien to me at that time. But, I was familiar with BST. Solved the problems using 'parent' pointers first.
    Then, came up with the following recursive idea.

    function signature: LCA(Node* root , int n1, int n2)

    1.) If the current root is NULL, return NULL.
    2.) If root->val> n1 && root->val > n2:
    return LCA(root->left , n1 , n2)
    3.) If root->val < n1 && root->val < n2
    r...

  • Answered Anonymously
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

The interview was some 30 minutes after the technical round. The HR asked me general questions like my hobbies, technical and non-technical things in my resume, my interests, etc. The overall communication was very friendly.

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from National Institute of Technology, Raipur. I applied for the job as SDE - Intern in HyderabadEligibility criteriaAbove 7.5 GPAUnitedHealth Group interview preparation:Topics to prepare for the interview - Operating Systems, Data Structures, Algorithms, Project, Math puzzlesTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Be very informative of your project and brush it up before the interview process
Tip 2 : In the Aptitude round, aptitude questions were relatively harder but coding problems are very easy

Application resume tips for other job seekers

Tip 1 : Describe your project(s) well and put GitHub link
Tip 2 : They also asked non-technical topics that were in my resume

Final outcome of the interviewRejected

Skills evaluated in this interview

Software Developer Intern Interview Questions Asked at Other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in CommVault
Q2. Sliding Maximum Problem Statement Given an array of integers ARR ... read more
asked in Amazon
Q3. Fish Eater Problem Statement In a river where water flows from le ... read more
Q4. Find K Closest Elements Given a sorted array 'A' of length 'N', a ... read more
asked in Groww
Q5. Minimum and Maximum Candy Cost Problem Ram is in Ninjaland, visit ... read more

Interview questions from similar companies

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

I applied via campus placement at KIIT University, Bhuvaneshwar and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

It had mcq and 1 hard coding question

Round 2 - Technical 

(2 Questions)

  • Q1. They asked me about backtracking and dp series problem and also to solve the given question
  • Q2. Java and in depth about different pillars of java

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus primarily on Java and advanced data structures and algorithms topics, such as backtracking and dynamic programming.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Apr 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic C# and oops questions , mostly on inheritance , abstraction ,encapsulation , properties
  • Q2. Coding questions related to strings finding longest substring without repeating characters , find the count of vowels in string with using dictionary kr hash ( used ascii value approach)
Round 2 - Technical 

(2 Questions)

  • Q1. Mostly on project .
  • Q2. Was asked about design patterns , had to create a design for a simple . How would I structure all the folders classes , interfaces logics etc .
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Normal questions (technical and logical question)

Round 2 - Technical 

(2 Questions)

  • Q1. On technology only
  • Q2. Some logical wuesrion also
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Basic introduction and soo on.
Round 2 - Coding Test 

Question related to profile.

Round 3 - Aptitude Test 

Aptitude test questions

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

I applied via Naukri.com and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Tech Basic Quesions and Related to stack mostly on .net Sql and Angular
Round 1 - Case Study 

C programming

Interview Preparation Tips

Interview preparation tips for other job seekers - software development
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected

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

Round 1 - Aptitude Test 

It was a 2hr test. It had two sections. 1)Quantitative aptitude and verbal ability and 2) Technical aptitude.

Round 2 - Technical 

(1 Question)

  • Q1. It was for 45 min. Asked some OOPs concepts, CN fundamentals. Questions were asked on arrays and linked lists. also on OS
Round 3 - HR 

(1 Question)

  • Q1. It was for 5 min. Asked on why I wanted to join Optum

Interview Preparation Tips

Interview preparation tips for other job seekers - Mention only things that you are perfect in resume. Don't add extra stuff and don't fake it.

I applied via Walk-in and was interviewed in May 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Convert Number to words

Round 2 - One-on-one 

(1 Question)

  • Q1. SOLID principles with real time examples
  • Ans. 

    SOLID principles are a set of guidelines for writing maintainable and scalable code.

    • Single Responsibility Principle: A class should have only one reason to change.

    • Open/Closed Principle: A class should be open for extension but closed for modification.

    • Liskov Substitution Principle: Subtypes should be substitutable for their base types.

    • Interface Segregation Principle: Clients should not be forced to depend on interfaces ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Siemens Healthcare Software Developer interview:
  • SOLID Principle
Interview preparation tips for other job seekers - SOLID, OOPS, .NET, C#, Multithreading

Tell us how to improve this page.

Interview Questions from Similar Companies

Optum Interview Questions
4.0
 • 416 Interviews
Apollo Hospitals Interview Questions
4.1
 • 332 Interviews
R1 RCM Interview Questions
3.9
 • 271 Interviews
Fortis Healthcare Interview Questions
4.1
 • 122 Interviews
Narayana Health Interview Questions
4.1
 • 61 Interviews
SRL Diagnostics Interview Questions
4.1
 • 55 Interviews
View all
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 - ₹4.9 L/yr

Software Engineer
866 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
Did you find this page helpful?
Yes No
write
Share an Interview