Upload Button Icon Add office photos

Filter interviews by

Optum Senior Manager Interview Questions and Answers

Updated 17 Nov 2021

Optum Senior Manager Interview Experiences

1 interview found

I applied via LinkedIn and was interviewed in Oct 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Formula of Current Ratio
  • Ans. 

    Current Ratio formula is Current Assets divided by Current Liabilities.

    • Current Ratio = Current Assets / Current Liabilities

    • It measures a company's ability to pay off its short-term liabilities with its short-term assets

    • A higher current ratio indicates a better ability to meet short-term obligations

    • Example: If a company has current assets of $100,000 and current liabilities of $50,000, the current ratio would be 2:1

  • Answered by AI
  • Q2. What is Quick Ratio
  • Ans. 

    Quick Ratio is a financial metric used to measure a company's ability to pay off its current liabilities with its most liquid assets.

    • Quick Ratio is also known as Acid Test Ratio

    • It is calculated by dividing the sum of cash, marketable securities, and accounts receivable by current liabilities

    • A higher Quick Ratio indicates a company's better liquidity position

    • A Quick Ratio of 1:1 is considered good

    • Example: If a company h...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared on basics. Journals practical examples and if you are experienced always explain by taking examples

Interview questions from similar companies

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

I applied via Referral and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What made me change the job from previous organisation
  • Q2. JD process flow discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest with your answers
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - HR 

(2 Questions)

  • Q1. Explaining about the company and process
  • Q2. Checking the candidate fits in appropriate process
Round 3 - Technical 

(1 Question)

  • Q1. Testing of domain knowledge
Round 4 - One-on-one 

(1 Question)

  • Q1. Final round ensuring the person is on the same page with all the previous discussions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be transparent and candid with the information you provide
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What will you do in your previous company
  • Ans. 

    Implemented new sales strategies, streamlined operations, and increased revenue by 20%.

    • Implemented new sales strategies to target untapped markets

    • Streamlined operations by optimizing processes and reducing inefficiencies

    • Increased revenue by 20% through effective sales and marketing initiatives

  • Answered by AI
  • Q2. Do you know about Oracle, SSRS ,HIS
  • Ans. 

    Yes, I am familiar with Oracle, SSRS, and HIS.

    • Oracle is a popular relational database management system used for storing and managing data.

    • SSRS (SQL Server Reporting Services) is a reporting tool provided by Microsoft for creating and managing reports.

    • HIS (Health Information System) is a system used in healthcare organizations for managing patient data and healthcare information.

  • Answered by AI

Skills evaluated in this interview

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 Campus Placement and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

They are ask qutions on Denials,Ram.

Round 2 - Group Discussion 

Denials and some Ram quetion

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I was interviewed in Jul 2022.

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 - Coding Test 

They ask you open Hacker Earth site and choose some random programs and ask you to complete it.

Round 3 - Technical 

(6 Questions)

  • Q1. What is multi threading
  • Ans. 

    Multi threading is the ability of a program to perform multiple tasks concurrently.

    • It allows for better utilization of CPU resources

    • It can improve program performance and responsiveness

    • Examples include web servers handling multiple requests simultaneously and video games rendering graphics while processing user input

  • Answered by AI
  • Q2. What is extend keyword
  • Ans. 

    The extend keyword is used to add properties and methods to an existing object.

    • Used in JavaScript to add properties and methods to an object

    • Can be used to inherit properties and methods from a parent object

    • Syntax: Object.assign(target, ...sources)

    • Example: const obj1 = {a: 1}; const obj2 = {b: 2}; const obj3 = {...obj1, ...obj2};

  • Answered by AI
  • Q3. Explain override. Why we need virtual?
  • Ans. 

    Override is used to provide a new implementation of a method in a subclass. Virtual is needed to allow the method to be overridden.

    • Override is used to change the behavior of a method in a subclass

    • Virtual is used to allow the method to be overridden in a subclass

    • Without virtual, a subclass cannot override a method from its parent class

    • Override is used to implement polymorphism in object-oriented programming

  • Answered by AI
  • Q4. Write a program to sort the array and remove duplicates.
  • Ans. 

    Program to sort and remove duplicates from an array.

    • Use built-in sort() method to sort the array in ascending order.

    • Loop through the sorted array and remove duplicates using filter() method.

    • Return the sorted and duplicate-free array.

  • Answered by AI
  • Q5. What is Is Relationship and As Relationship in oops?
  • Ans. 

    Is Relationship and As Relationship are two types of relationships in object-oriented programming.

    • Is Relationship is a type of relationship where one class is a subset of another class.

    • As Relationship is a type of relationship where one class is a type of another class.

    • Is Relationship is denoted by a solid line with a closed arrowhead pointing towards the superclass.

    • As Relationship is denoted by a dotted line with an o...

  • Answered by AI
  • Q6. What are architectural, structural, behavioural design patterns? Why we need them?
  • Ans. 

    Architectural, structural, and behavioral design patterns are reusable solutions to common software design problems.

    • Architectural patterns define the overall structure of a software system

    • Structural patterns describe how objects and classes can be combined to form larger structures

    • Behavioral patterns focus on communication between objects and how they operate together

    • Design patterns help to improve software quality, ma...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with basic programming and algorithms.

Skills evaluated in this interview

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 - One-on-one 

(2 Questions)

  • Q1. Introduction personal,hospital intro,client deal,situation handle
  • Q2. Pkg rate,revenue,client deal

Interview Preparation Tips

Interview preparation tips for other job seekers - Verbal interview.hospital purpose,client deal ,financial mgmt,revenue,

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Job profile related. Wats my understanding towards it!
  • Q2. Why this profile? What makes you suitable for the role?
  • Ans. 

    I am suitable for the role of Senior Officer because of my extensive experience, leadership skills, and ability to handle complex tasks.

    • I have over 10 years of experience in a similar role, which has equipped me with a deep understanding of the responsibilities and challenges involved.

    • I have successfully led teams and projects, demonstrating strong leadership and communication skills.

    • I am highly organized and detail-or...

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Tell Me something about yourself!
  • Ans. 

    I am a highly experienced professional with a strong background in leadership and strategic planning.

    • Over 10 years of experience in senior management roles

    • Proven track record of successfully leading teams and achieving organizational goals

    • Expertise in strategic planning, budgeting, and resource allocation

    • Strong communication and interpersonal skills

    • Ability to adapt to changing environments and drive innovation

    • Led a tea...

  • Answered by AI
  • Q2. Wat is your goal in life? Shorts and long term both.
  • Ans. 

    To continuously learn, grow, and make a positive impact on others' lives.

    • Short-term goal: Obtain a leadership position within the organization.

    • Short-term goal: Complete a professional certification in my field.

    • Long-term goal: Make a significant contribution to the company's success.

    • Long-term goal: Mentor and inspire others to achieve their full potential.

    • Long-term goal: Establish a foundation to support education in un

  • Answered by AI
Round 4 - One-on-one 

(1 Question)

  • Q1. Why do We hire you? Wat do you offer that others don’t?
  • Ans. 

    I offer a unique combination of experience, skills, and qualities that set me apart from other candidates.

    • Extensive experience in the field, with a proven track record of success

    • Strong leadership skills and the ability to motivate and inspire a team

    • Exceptional problem-solving and decision-making abilities

    • Excellent communication and interpersonal skills

    • A strategic mindset and the ability to think critically

    • A strong work...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The right attitude will take you places! Be confident and stay grounded!

I applied via LinkedIn and was interviewed in Mar 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - HR 

(1 Question)

  • Q1. Tell me something about yourself.
Round 3 - One-on-one 

(1 Question)

  • Q1. Why do you want to join our organisation?

Interview Preparation Tips

Interview preparation tips for other job seekers - Until you do not have a choice then only go for the interview

Optum Interview FAQs

How to prepare for Optum Senior Manager 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 Python, SQL, Big Data, Data Science and Machine Learning.
What are the top questions asked in Optum Senior Manager interview?

Some of the top questions asked at the Optum Senior Manager interview -

  1. Formula of Current Ra...read more
  2. What is Quick Ra...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Optum interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Optum Senior Manager Salary
based on 64 salaries
₹19 L/yr - ₹64 L/yr
83% more than the average Senior Manager Salary in India
View more details

Optum Senior Manager Reviews and Ratings

based on 8 reviews

4.3/5

Rating in categories

3.7

Skill development

4.0

Work-Life balance

3.9

Salary & Benefits

3.5

Job Security

3.8

Company culture

2.9

Promotions/Appraisal

3.2

Work Satisfaction

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

₹1.5 L/yr - ₹5.6 L/yr

Software Engineer
2.1k salaries
unlock blur

₹5.3 L/yr - ₹22 L/yr

Senior Software Engineer
2.1k salaries
unlock blur

₹9.6 L/yr - ₹32.5 L/yr

Medical Coder
1k salaries
unlock blur

₹1.5 L/yr - ₹8 L/yr

Senior Claims Associate
753 salaries
unlock blur

₹2.1 L/yr - ₹6.5 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