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
4.0

based on 5.8k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Optum Global Solutions Senior Automation Engineer Interview Questions, Process, and Tips

Updated 24 Jan 2022

Optum Global Solutions Senior Automation Engineer Interview Experiences

1 interview found

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

Interview Questionnaire 

7 Questions

  • Q1. What is Set?
  • Ans. 

    Set is a collection of unique elements with no specific order.

    • A set can be created using curly braces {} or the set() function.

    • Sets can only contain immutable objects like strings, numbers, and tuples.

    • Sets are useful for removing duplicates and performing mathematical operations like union and intersection.

    • Example: my_set = {1, 2, 3} or my_set = set([1, 2, 3])

  • Answered by AI
  • Q2. What is Map?
  • Ans. 

    Map is a data structure that stores key-value pairs and allows fast retrieval of values based on their keys.

    • Maps are also known as dictionaries or associative arrays.

    • Keys in a map must be unique, but values can be duplicated.

    • Maps are commonly used in programming for tasks such as caching, memoization, and indexing.

    • Examples of programming languages that have built-in support for maps include Python, Java, and JavaScript

  • Answered by AI
  • Q3. Difference between driver.get() and navigate().to()?
  • Ans. 

    driver.get() loads a new page while navigate().to() loads a new page or refreshes the current page.

    • driver.get() is a method of WebDriver interface that loads a new web page in the current browser window.

    • navigate().to() is a method of Navigation interface that loads a new web page or refreshes the current page.

    • driver.get() waits for the page to load completely before returning control to the script.

    • navigate().to() does ...

  • Answered by AI
  • Q4. Write a program to reverse a string, remove duplicates from a string, String s="Test$123.QA", output should be Test 123 QA
  • Ans. 

    Program to reverse a string and remove duplicates from it.

    • Create a function to reverse the string using a loop or built-in function

    • Create a function to remove duplicates using a loop or built-in function

    • Split the string by the delimiter and join it with space

  • Answered by AI
  • Q5. What will be your approach if you have to develop a framework from scratch?
  • Ans. 

    My approach would be to first understand the project requirements, identify the tools and technologies needed, and then design a modular and scalable framework.

    • Understand project requirements

    • Identify tools and technologies needed

    • Design a modular and scalable framework

    • Create a folder structure for the framework

    • Define coding standards and guidelines

    • Implement reusable functions and libraries

    • Integrate with version control ...

  • Answered by AI
  • Q6. Some sql questions, difference between inner join & left join
  • Q7. What task do u perform as automation testing activity?
  • Ans. 

    As an automation testing activity, I perform tasks such as creating and executing automated test scripts, analyzing test results, and reporting defects.

    • Creating and maintaining automated test scripts using tools like Selenium, Appium, or TestComplete

    • Executing automated test scripts and analyzing test results to identify defects

    • Reporting defects and working with developers to resolve them

    • Integrating automated tests into...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on the basics, not very advanced level

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain the architectire of Automation Project
  • Ans. 

    The architecture of an Automation Project involves the design and structure of the automated testing framework.

    • The architecture typically includes components such as test scripts, test data, test environment, and reporting mechanisms.

    • Frameworks like Selenium, Appium, or Robot Framework are commonly used in automation projects.

    • The architecture should be scalable, maintainable, and reusable to support ongoing testing nee...

  • Answered by AI
  • Q2. Coding questions on Data strcuture in Java

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare Java and Data structures

Skills evaluated in this interview

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

(1 Question)

  • Q1. Find duplicate string with occurences
  • Ans. 

    Use a hashmap to find duplicate strings and their occurrences in an array of strings.

    • Iterate through the array of strings and store each string in a hashmap with its count.

    • If a string is already in the hashmap, increment its count.

    • After iterating through the array, check the hashmap for strings with count greater than 1 to find duplicates.

  • Answered by AI

Skills evaluated in this interview

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 Nov 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basics of cucumber
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Framework explain
  • Ans. 

    A framework is a set of guidelines, libraries, and tools used to develop and maintain automation scripts efficiently.

    • Framework provides structure and organization to automation code

    • It includes reusable components like libraries, utilities, and test data

    • Frameworks can be data-driven, keyword-driven, or hybrid

    • Examples: Selenium WebDriver with TestNG for Java, Robot Framework with Python

  • Answered by AI
  • Q2. String questions

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. JAVA BASED SELENIUM QUESTIONS
Round 2 - HR 

(1 Question)

  • Q1. BASIC HR , JUST BE CONFIDENT
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Core Java String reverse program

I applied via Recruitment Consultant and was interviewed in Oct 2021. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is super keyword
  • Ans. 

    Super keyword is used to refer to the parent class constructor or method.

    • Used in inheritance to call parent class constructor

    • Used to access parent class variables and methods

    • Can be used with both constructors and methods

  • Answered by AI
  • Q2. What is return type of find element?
  • Ans. 

    Return type of find element is WebElement.

    • The find element method returns a single WebElement.

    • The WebElement can be used to interact with the web page.

    • If the element is not found, a NoSuchElementException is thrown.

  • Answered by AI
  • Q3. What is try catch block
  • Ans. 

    Try catch block is used to handle exceptions in code and prevent program crashes.

    • Try block contains the code that may throw an exception

    • Catch block catches the exception thrown by try block

    • Finally block contains the code that will execute regardless of whether an exception was thrown or not

    • Multiple catch blocks can be used to handle different types of exceptions

    • Example: try { //code that may throw exception } catch (Ex...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Study basic!! Focus on what you have done in your experience.

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. Questions on Java/Selenium/Cucumber/Manual Testing

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good in basics and be confident in your answers

I applied via Company Website and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Skills and Project Experience
  • Q2. Programming

Interview Preparation Tips

Interview preparation tips for other job seekers - Explain your project well. Practice what you have mentioned in ur CV and ask for what they are looking for and ask for positive feedbacks and work on them.

Optum Global Solutions Interview FAQs

What are the top questions asked in Optum Global Solutions Senior Automation Engineer interview?

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

  1. what will be your approach if you have to develop a framework from scrat...read more
  2. write a program to reverse a string, remove duplicates from a string, String s=...read more
  3. What task do u perform as automation testing activi...read more

Tell us how to improve this page.

Optum Global Solutions Senior Automation Engineer Salary
based on 4 salaries
₹9.6 L/yr - ₹30.1 L/yr
27% more than the average Senior Automation Engineer Salary in India
View more details

Optum Global Solutions Senior Automation Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

4.0

Salary

5.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Claims Associate
4.3k salaries
unlock blur

₹1.6 L/yr - ₹5.6 L/yr

Senior Software Engineer
2.8k salaries
unlock blur

₹9.4 L/yr - ₹29.6 L/yr

Software Engineer
2.6k salaries
unlock blur

₹6.2 L/yr - ₹22 L/yr

Senior Claims Associate
1.2k salaries
unlock blur

₹2.1 L/yr - ₹5.8 L/yr

Medical Coder
1.1k salaries
unlock blur

₹1.5 L/yr - ₹8 L/yr

Explore more salaries
Compare Optum Global Solutions with

Cognizant

3.8
Compare

Accenture

3.8
Compare

IBM

4.0
Compare

TCS

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview