Upload Button Icon Add office photos

Filter interviews by

Optum Intern Interview Questions and Answers

Updated 8 Oct 2024

Optum Intern Interview Experiences

2 interviews found

Intern Interview Questions & Answers

user image Anonymous

posted on 8 Oct 2024

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

Two questions and aptitude questions

Round 2 - Coding Test 

Two data structures and algorithms questions

Round 3 - HR 

(1 Question)

  • Q1. Location preference

Intern Interview Questions & Answers

user image Anonymous

posted on 23 Feb 2022

I applied via Company Website and was interviewed in Aug 2021. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don’t be afraid to ask questions

Intern Interview Questions Asked at Other Companies

asked in Accenture
Q1. Case. There is a housing society “The wasteful society”, you coll ... read more
Q2. Which programming language you are comfortable with?
asked in Deloitte
Q3. Case : I am a US based company and I sell 3 products A, B, C (I d ... read more
Q4. Huffman CodingYou are given an array 'ARR' of Integers having 'N' ... read more
asked in Accenture
Q5. A marketing strategy case. Client is a perfume seller in Jaipur. ... read more

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Behavioral 

(1 Question)

  • Q1. Tell me a time when you failed
Round 2 - Technical 

(1 Question)

  • Q1. Walk me through three financial statements
  • Ans. 

    The three financial statements are the income statement, balance sheet, and cash flow statement.

    • Income statement shows a company's revenues and expenses over a specific period of time.

    • Balance sheet provides a snapshot of a company's financial position at a specific point in time.

    • Cash flow statement shows how changes in balance sheet and income affect cash and cash equivalents.

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Numerical reasoning test.

Round 2 - Technical 

(5 Questions)

  • Q1. What are the benefits of breastfeeding in mother and baby?
  • Q2. Wat are the rights of medication administration?
  • Q3. What are the benefits of KMC?
  • Q4. What is neonatal jaundice and how you will prevent ?
  • Q5. What do you mean by fasting sugar ?

Interview Preparation Tips

Topics to prepare for Cloudnine Hospital Intern interview:
  • Develop your soft skills.
  • Team Management
  • Technical Skills
Interview preparation tips for other job seekers - It is one of the best hospitals in India where you can learn about many things like medical conditions, treatments , testing , medications , etc .
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed before Sep 2022. 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 - One-on-one 

(2 Questions)

  • Q1. Do your best to crack
  • Q2. What are your qualifications

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about your skills
Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Esay
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Why did you choose Healthcare industry

Interview Preparation Tips

Interview preparation tips for other job seekers - Before interview take a look at company and industry background and prepare well

I applied via LinkedIn

Interview Questionnaire 

3 Questions

  • Q1. Do you feel bored of doing Audit
  • Q2. What you did for ur team , Department and company
  • Q3. Revenue Recognition in Hospital and restaurant

Interview Preparation Tips

Interview preparation tips for other job seekers - Expect psychological questions

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

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. Program to check the validity of a Password

    Ninjas are trying to hack a system of a terrorist organization so that they can know where they will be going to attack next. But to hack the system and to get a...

  • Ans. 

    1.) Maintained 4 flags as "false" for checking the capital letter, small letter, special character and number.
    2.) Iterated the string and checking every character in it for the above 4 flags.
    3.) If either of the flags were false, returned 'false'
    4.) If the length of string was less than 'K', returned 'false'
    5.) Returned 'true'

  • Answered by CodingNinjas
  • Q2. Reverse Linked List

    Given a singly linked list of integers. Your task is to return the head of the reversed linked list.

    For example:
    The given linked list is 1 -> 2 -> 3 -> 4-> NULL. Then th...
  • 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 by CodingNinjas
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

    You have been given a Binary Tree of distinct integers and two nodes ‘X’ and ‘Y’. You are supposed to return the LCA (Lowest Common Ancestor) of ‘X’ and ‘Y’.

    The LCA of ‘X’ and ‘Y’ in ...

  • 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 by CodingNinjas
Round 3 - HR 

(1 Question)

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.

  • Q1. General Questions

    What do you do to relieve stress? Tell me something outside of your academics.

  • Ans. 

    Tip 1 : I listen to music and mostly take a walk for some fresh air in the evening/morning.
    Tip 2 : I am a team person and believe that the whole is greater than the sum of parts. I am interested in painting and writing and am currently a coordinator at the literary committee of the college.

  • Answered by CodingNinjas

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

I applied via Approached by company and was interviewed before Jan 2021. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Your future goals and ambitions,
  • Q2. Five year goals, Strengths, weakness, why apollo,

Interview Preparation Tips

Interview preparation tips for other job seekers - Be versed with the Resume forwarded, dont bluff as HR is not a fool. Be well dressed

Optum Interview FAQs

How many rounds are there in Optum Intern interview?
Optum interview process usually has 2 rounds. The most common rounds in the Optum interview process are HR and Coding Test.
How to prepare for Optum Intern interview?
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. The most common topics and skills that interviewers at Optum expect are chat support, Non Voice Process, blended process, Customer Service and Email Support.

Tell us how to improve this page.

People are getting interviews through

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

Intern Interview Questions from Similar Companies

TCS Intern Interview Questions
3.7
 • 35 Interviews
Infosys Intern Interview Questions
3.7
 • 22 Interviews
IBM Intern Interview Questions
4.1
 • 14 Interviews
Wipro Intern Interview Questions
3.7
 • 11 Interviews
HCLTech Intern Interview Questions
3.5
 • 7 Interviews
View all

Optum Intern Reviews and Ratings

based on 12 reviews

4.2/5

Rating in categories

4.0

Skill development

4.2

Work-Life balance

3.9

Salary & Benefits

3.8

Job Security

4.0

Company culture

4.0

Promotions/Appraisal

3.9

Work Satisfaction

Explore 12 Reviews and Ratings
Claims Associate
3.1k salaries
unlock blur

₹1.5 L/yr - ₹5.6 L/yr

Senior Software Engineer
2.1k salaries
unlock blur

₹9.6 L/yr - ₹32 L/yr

Software Engineer
2k salaries
unlock blur

₹5.3 L/yr - ₹22 L/yr

Medical Coder
1.1k salaries
unlock blur

₹1.5 L/yr - ₹8 L/yr

Senior Claims Associate
748 salaries
unlock blur

₹2.1 L/yr - ₹6 L/yr

Explore more salaries
Compare Optum with

Accenture

3.9
Compare

Cognizant

3.8
Compare

Infosys

3.7
Compare

TCS

3.7
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