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

zig zag pattern zig zag pattern

Filter interviews by

Optum Global Solutions QA Engineer Interview Questions and Answers

Updated 24 Feb 2025

Optum Global Solutions QA Engineer Interview Experiences

1 interview found

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 24 Feb 2025

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

(4 Questions)

  • Q1. Java coding output predict related questions , try catch , string concept
  • Q2. Switch case
  • Q3. Inheritance
  • Q4. What challanges faced in automation
  • Ans. 

    Challenges in automation include dynamic UI elements, data synchronization, and maintenance of test scripts.

    • Dynamic UI elements can be challenging to automate as they may change frequently.

    • Data synchronization between different systems can be difficult to achieve in automation.

    • Maintenance of test scripts can be time-consuming, especially when application changes frequently.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. How to read the data and assert with db value in api automation
  • Ans. 

    To read data and assert with db value in API automation, use API response to extract data and compare with database query result.

    • Extract data from API response using JSON parsing libraries like Gson or Jackson

    • Execute database query to retrieve expected value

    • Compare the extracted data with the database value using assertion libraries like TestNG or JUnit

  • Answered by AI
  • Q2. 401 & 403 status code
Round 3 - HR 

(1 Question)

  • Q1. Managerial behavioural questions

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Oct 2020. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Wait in Selenium. type of waits.
  • Q2. Dynamic element how to search
  • Ans. 

    Dynamic elements can be searched using unique attributes like ID, class, name, or XPath.

    • Use ID attribute if it's unique and static

    • Use class attribute if it's unique and dynamic

    • Use name attribute if it's unique and static

    • Use XPath if other attributes are not unique or not available

  • Answered by AI
  • Q3. Jenkins do u know or not
  • Ans. 

    Jenkins is an open-source automation server that helps to automate parts of the software development process.

    • Jenkins is used for continuous integration and continuous delivery

    • It can be used to build, test, and deploy software

    • Jenkins has a large number of plugins available to extend its functionality

    • Examples of plugins include Git, Maven, and JUnit

    • Jenkins can be configured to run on different operating systems and envir...

  • Answered by AI
  • Q4. How to fetch data from xls

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare selenium with java testng and appache poi.

Skills evaluated in this interview

QA Engineer Interview Questions Asked at Other Companies

Q1. Suppose your manager gave you a task to complete in one week, but ... read more
Q2. There are 80 pairs of socks in a dark room, 40 black and 40 white ... read more
Q3. 100 apples are eaten in 5 consecutive days, with each day having ... read more
Q4. how to access amazon page directly directly with out using driver ... read more
Q5. If a pen's weight equals 2 kg plus half of its own weight, what i ... read more

I applied via Recruitment Consultant and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Reverse string, find second highest number , string vs string buffer , hash map vs hash set, instance & local variable, primitive and non primitive data type, overloading vs overriding , explain framework
  • Ans. 

    Interview questions for QA Engineer

    • Reverse a string using StringBuilder or StringBuffer

    • Find second highest number by sorting the array and accessing the second last element

    • String is immutable while StringBuffer is mutable

    • HashMap stores key-value pairs while HashSet stores only keys

    • Instance variables are declared inside a class while local variables are declared inside a method

    • Primitive data types are int, float, double...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - clear basics to understand questin

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Explain framework that you worked on your last company?
  • Q2. I have worked on data driven framework. Mention below points while explaining- The language you used,api ,java utility classes,third party tool if integrated maven based project.

Interview Preparation Tips

Interview preparation tips for other job seekers - I have applied for automation testing the interviewer asked all the questions based on Java and selenium.

What people are saying about Optum Global Solutions

View All
an ai ml engineer
4d
Need help to switch
Cognizant 21 lpa, 30 min travel, no traffic. LTI mindtree 24 Ipa, 1 hour travel, lot of traffic. Infosys 26 Ipa, 30 min travel, no traffic. Optum (Third Party) REMOTE 17 LPA. My last package was 10.5 LPA with 6.6 YOE. Have already joined optum it's been 2 weeks. got other offers after that. What should I do?
Got a question about Optum Global Solutions?
Ask anonymously on communities.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in May 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Online apptitude and coding round was there

Round 2 - Technical 

(1 Question)

  • Q1. Question related to the java and Testing methodology
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude test level was easy

Round 2 - Technical 

(2 Questions)

  • Q1. Java basics questions
  • Q2. Selenium excel related coding
  • Ans. 

    Using Selenium with Excel involves reading and writing data for automated testing.

    • Use Apache POI library to read/write Excel files in Java.

    • Example: Reading data from Excel can be done using FileInputStream and Workbook classes.

    • Example: Writing data to Excel involves creating a FileOutputStream and using the Sheet and Row classes.

    • Selenium can interact with web elements based on data retrieved from Excel.

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

I appeared for an interview in Oct 2024.

Round 1 - Aptitude Test 

Complex aptitude Test

Round 2 - Technical 

(2 Questions)

  • Q1. Test estimation techniques
  • Ans. 

    Test estimation techniques involve various methods to predict the time and resources needed for testing activities.

    • Use historical data from previous projects to estimate testing effort

    • Break down the project into smaller tasks and estimate each task individually

    • Use expert judgment from experienced QA engineers to provide input on estimation

    • Consider complexity, risks, and dependencies when estimating testing effort

  • Answered by AI
  • Q2. Equals to vs ==
  • Ans. 

    Equals to (equals method) checks value equality, while == checks reference equality in Java.

    • equals() method compares the actual content of objects. Example: 'abc'.equals('abc') returns true.

    • == operator checks if both references point to the same object in memory. Example: String a = new String('abc'); String b = new String('abc'); a == b returns false.

    • For primitive types, == compares values directly. Example: int x = 5...

  • Answered by AI

Skills evaluated in this interview

Are these interview questions helpful?

I applied via Naukri.com and was interviewed in Jun 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Xpath/ diffrence between "/" &"//" basic programs java

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare basic java program and be confident
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Java basic, oops
  • Q2. Api testing, git, jenkins

QA Engineer Interview Questions & Answers

Nagarro user image deepali mehra

posted on 26 May 2024

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

(1 Question)

  • Q1. Difference between defect leakage and defect release?
  • Ans. 

    Defect leakage occurs when a defect is found by the end user after release, while defect release is when a defect is identified and released to production.

    • Defect leakage refers to defects that were not identified during testing and are found by end users after the software is released.

    • Defect release is when a defect is identified during testing but still released to production.

    • Defect leakage can result in negative impa...

  • Answered by AI

Skills evaluated in this interview

Optum Global Solutions Interview FAQs

How many rounds are there in Optum Global Solutions QA Engineer interview?
Optum Global Solutions interview process usually has 3 rounds. The most common rounds in the Optum Global Solutions interview process are Technical and HR.
What are the top questions asked in Optum Global Solutions QA Engineer interview?

Some of the top questions asked at the Optum Global Solutions QA Engineer interview -

  1. how to read the data and assert with db value in api automat...read more
  2. what challanges faced in automat...read more
  3. java coding output predict related questions , try catch , string conc...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Optum Global Solutions QA Engineer Salary
based on 41 salaries
₹5 L/yr - ₹20 L/yr
87% more than the average QA Engineer Salary in India
View more details

Optum Global Solutions QA Engineer Reviews and Ratings

based on 8 reviews

4.7/5

Rating in categories

4.1

Skill development

4.2

Work-life balance

3.5

Salary

3.6

Job security

4.3

Company culture

3.8

Promotions

3.9

Work satisfaction

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

₹1.5 L/yr - ₹5.2 L/yr

Senior Software Engineer
3.3k salaries
unlock blur

₹9.9 L/yr - ₹34.7 L/yr

Software Engineer
2.7k salaries
unlock blur

₹6.5 L/yr - ₹24 L/yr

Medical Coder
1.7k salaries
unlock blur

₹1.1 L/yr - ₹6.5 L/yr

Senior Claims Associate
1.2k salaries
unlock blur

₹1.8 L/yr - ₹5.8 L/yr

Explore more salaries
Compare Optum Global Solutions with

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Capgemini

3.7
Compare
write
Share an Interview