Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Nagarro Team. If you also belong to the team, you can get access from here

Nagarro Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Nagarro Qa Automation Testing Engineer Interview Questions, Process, and Tips

Updated 30 Jan 2025

Top Nagarro Qa Automation Testing Engineer Interview Questions and Answers

  • Q1. Which estimate technique you follow , if fibonacci then why it is in 1 2 3 5 8 13 ?? Not in 12345678
  • Q2. Have u created the testplan document when porject was started
  • Q3. Sorting of hashmap using keys without any method. xpath for list of webelements in PageFactory. TARGET folder in maven Data Table in cucumber.
View all 17 questions

Nagarro Qa Automation Testing Engineer Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
No response

I was interviewed in Dec 2024.

Round 1 - Aptitude Test 

Basic quant and reasoning questions
Selenium MCQ
Java programs with MCQ

Round 2 - Technical 

(23 Questions)

  • Q1. Tell me about yourself
  • Q2. Where you initialise driver
  • Ans. 

    The driver is typically initialized in the setup method of a test automation framework.

    • Driver initialization is usually done in a setup method before test execution.

    • Commonly used methods for driver initialization include WebDriverManager, System.setProperty, and driver instantiation.

    • Example: WebDriverManager.chromedriver().setup();

  • Answered by AI
  • Q3. Driver is static or non static
  • Ans. 

    Driver can be both static and non-static depending on the context of its usage.

    • Driver class can be static if it is used to initiate the WebDriver instance in a test automation framework.

    • Driver class can be non-static if it is used as an instance variable within a test class.

    • Static driver can be accessed directly without creating an object of the class.

    • Non-static driver requires an object of the class to be created befo

  • Answered by AI
  • Q4. Difference between static and non static
  • Ans. 

    Static variables belong to the class itself, while non-static variables belong to instances of the class.

    • Static variables are shared among all instances of a class

    • Non-static variables are unique to each instance of a class

    • Static variables are initialized only once, at the start of the program

    • Non-static variables are initialized separately for each instance of the class

  • Answered by AI
  • Q5. Disadvantages of static and non static
  • Ans. 

    Static and non-static have their own disadvantages in QA automation testing.

    • Static methods cannot be overridden or inherited, making it difficult to create flexible test cases.

    • Non-static methods require an instance of the class to be created, which can lead to increased memory usage.

    • Static methods can lead to tight coupling between classes, making it harder to maintain and update the code.

    • Non-static methods may have de...

  • Answered by AI
  • Q6. Parallel execution in TestNG
  • Ans. 

    TestNG allows parallel execution of test cases to save time and improve efficiency.

    • TestNG provides the 'parallel' attribute in the testng.xml file to specify the level of parallelism for test execution.

    • Parallel execution can be achieved at the test level, class level, method level, or suite level.

    • TestNG also supports parallel execution of tests across multiple classes or suites using the 'parallel' attribute in the sui...

  • Answered by AI
  • Q7. Write the code for Parallel testing in TestNG
  • Ans. 

    Parallel testing in TestNG allows running tests concurrently for faster execution.

    • Use 'parallel' attribute in testng.xml file to specify parallel execution mode.

    • Set 'parallel' attribute to 'methods', 'classes', or 'tests' based on the level of parallelism needed.

    • Example: <suite name='MySuite' parallel='tests'>

    • Use 'thread-count' attribute to specify the number of threads to use for parallel execution.

  • Answered by AI
  • Q8. Difference between parallel methods and parallel tests
  • Ans. 

    Parallel methods run multiple methods concurrently within a single test, while parallel tests run multiple tests concurrently.

    • Parallel methods execute multiple methods within a single test class concurrently.

    • Parallel tests execute multiple test classes concurrently.

    • Parallel methods are useful for speeding up the execution of a single test, while parallel tests are useful for running multiple tests faster.

    • Example: Runni...

  • Answered by AI
  • Q9. Upload file using rest assured
  • Ans. 

    Use Rest Assured to upload a file

    • Use the given file path to create a File object

    • Use MultiPartSpecBuilder to build the request with the file

    • Send the request using Rest Assured's given(), when(), and post() methods

  • Answered by AI
  • Q10. Postman basic questions
  • Q11. Parameter for post method in postman
  • Ans. 

    The parameter for a POST method in Postman is typically sent in the request body.

    • Parameters are sent in the request body in key-value pairs

    • Parameters can be sent as form-data, x-www-form-urlencoded, or raw JSON

    • Example: {"key": "value"}

  • Answered by AI
  • Q12. BDD Framework cucumber
  • Q13. Cucumber execution process
  • Q14. How cucumber know step defination file placed
  • Ans. 

    Cucumber knows the step definition file based on the annotations provided in the feature files.

    • Cucumber uses annotations like @Given, @When, @Then to map steps in feature files to corresponding step definition methods.

    • Step definition files are typically placed in a separate package or directory within the project structure.

    • Cucumber scans the project directory for step definition files based on the package structure and

  • Answered by AI
  • Q15. Parameters used in cucumber
  • Ans. 

    Parameters used in cucumber are used to pass values to the step definitions in feature files.

    • Parameters are defined in feature files using < > syntax

    • Parameters can be passed to step definitions using Regular Expressions

    • Parameters can be used to make scenarios more reusable and dynamic

  • Answered by AI
  • Q16. Datatable in cucumber
  • Ans. 

    Datatable in Cucumber is used to pass multiple sets of data to a step definition in a scenario.

    • Datatables are defined using pipes (|) to separate values

    • Each row in the datatable represents a set of data passed to the step definition

    • Datatables can be used for parameterization and data-driven testing

  • Answered by AI
  • Q17. Have u created the testplan document when porject was started
  • Ans. 

    Yes, I have created the test plan document at the start of the project.

    • Yes, I always create a test plan document at the beginning of a project to outline the testing approach and strategy.

    • The test plan document includes details on scope, objectives, resources, schedule, and test cases.

    • It helps in ensuring that all stakeholders are aligned on the testing process and expectations.

    • For example, in my previous project, I cr...

  • Answered by AI
  • Q18. Testing cycle when project was on initial level
  • Ans. 

    During the initial testing cycle of a project, focus is on establishing test cases, setting up test environments, and identifying potential issues.

    • Creating test cases based on requirements

    • Setting up test environments

    • Identifying potential issues and risks

    • Executing test cases and reporting defects

    • Collaborating with developers to resolve issues

  • Answered by AI
  • Q19. Risk management and risk based testing
  • Q20. Which estimate technique you follow , if fibonacci then why it is in 1 2 3 5 8 13 ?? Not in 12345678
  • Ans. 

    Fibonacci sequence is a mathematical pattern where each number is the sum of the two preceding ones.

    • Fibonacci sequence is a series of numbers where each number is the sum of the two preceding ones.

    • The sequence starts with 1, 2, then each subsequent number is the sum of the two previous numbers (1+2=3, 2+3=5, 3+5=8, and so on).

    • This sequence is used in estimating because it reflects natural growth patterns found in natur

  • Answered by AI
  • Q21. What is testing matrix and automation ROI
  • Ans. 

    Testing matrix is a tool used to track test coverage and automation ROI is the return on investment from implementing automation testing.

    • Testing matrix is a visual representation of test cases, test scenarios, and their coverage across different platforms, browsers, devices, etc.

    • Automation ROI is the measure of the benefits gained from automation testing compared to the costs incurred in implementing and maintaining th...

  • Answered by AI
  • Q22. Cicd tool
  • Q23. Handle team ?
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Aptitude Test 

Test was based on Aptitude and Selenium, Java question.

Round 2 - Technical 

(2 Questions)

  • Q1. Sorting of hashmap using keys without any method. xpath for list of webelements in PageFactory. TARGET folder in maven Data Table in cucumber.
  • Ans. 

    Sorting a hashmap using keys without any method involves iterating through the keys and rearranging them in ascending order.

    • Iterate through the keys of the hashmap

    • Compare each key with the next key and swap them if they are in the wrong order

    • Continue this process until all keys are in ascending order

  • Answered by AI
  • Q2. Use Set to store all the keys and then perform soting.

Skills evaluated in this interview

Qa Automation Testing Engineer Interview Questions Asked at Other Companies

asked in GlobalLogic
Q1. selenium: what are selenium components, what are the different lo ... read more
asked in GlobalLogic
Q2. How do you convert json object to string and vice versa?
asked in GlobalLogic
Q3. Robot Framework : what are standard libraries in Robot Framework? ... read more
asked in GlobalLogic
Q4. Write a program to find the elements of a list that have least di ... read more
asked in GlobalLogic
Q5. what are the locators in selenium? what is the difference between ... read more

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Jan 2022. There were 3 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 Resume tips
Round 2 - Aptitude Test 

Math, logical reasoning, verbal communication

Round 3 - Technical 

(1 Question)

  • Q1. Java basic programming

Interview Preparation Tips

Interview preparation tips for other job seekers - Must know about testing Manual and Automation tool
Create test plan , write test scenario, Write and execution of test case
Error, Defect,bug tracking, SDLC,STLC Agile methodology, functional testing, Database Testing, GUI testing, Exploratory testing,Black Box testing, white Box testing,V Model,QA,QC, severity, Priority

I applied via Company Website and was interviewed before Nov 2021. There were 5 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 Resume tips
Round 2 - Aptitude Test 

Medium level Aptitude questions,and basic coding knowledge required to clear the First round

Round 3 - Assignment 

Communication skill Assessment

Round 4 - Technical 

(5 Questions)

  • Q1. Core Java Questions,few may ask to write basic program in Java/C/python
  • Q2. Write a program to print Fibonacci series
  • Ans. 

    Program to print Fibonacci series

    • Declare two variables to store the first two numbers of the series

    • Use a loop to generate the next numbers in the series

    • Print each number as it is generated

  • Answered by AI
  • Q3. Program to Print palindrome
  • Ans. 

    Program to print palindrome

    • A palindrome is a word, phrase, number, or other sequence of characters that reads the same forward and backward

    • To check if a string is a palindrome, we can compare the first and last characters, then the second and second-to-last characters, and so on

    • If all pairs match, the string is a palindrome

    • We can use a loop to iterate through the string and compare the characters

  • Answered by AI
  • Q4. Program to print average of number series
  • Ans. 

    Program to print average of number series

    • Create a variable to store the sum of the numbers in the series

    • Create a variable to store the count of numbers in the series

    • Loop through the series and add each number to the sum variable

    • Increment the count variable for each number in the series

    • Calculate the average by dividing the sum by the count

    • Print the average

  • Answered by AI
  • Q5. Program to print sum of 2 numbers
  • Ans. 

    Program to print sum of 2 numbers

    • Declare 2 variables to store the numbers

    • Add the variables and store the result in another variable

    • Print the result

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Self Intro,Fav movie and why is it favourite,Hobbies

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with aptitude and Java.All the best🙂
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Self introductions and java coding round
Round 1 - Technical 

(2 Questions)

  • Q1. Describe Singleton design pattern.
  • Ans. 

    Singleton design pattern restricts the instantiation of a class to a single instance and provides a global point of access to it.

    • Ensures only one instance of a class exists

    • Provides a global point of access to the instance

    • Uses a private constructor to prevent external instantiation

    • Commonly used in logging, database connections, and configuration settings

  • Answered by AI
  • Q2. Explain the framework
  • Ans. 

    A framework is a set of guidelines, rules, and best practices used to develop software applications.

    • A framework provides a structure for organizing code and helps to ensure consistency across the application.

    • It can include libraries, tools, and templates to simplify development.

    • Examples of popular frameworks include React, Angular, and Django.

    • Frameworks can be used for both manual and automated testing.

    • They can also be...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Was asked almost everything that was on the resume.

Skills evaluated in this interview

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. Difference between hash map and hash table
  • Ans. 

    HashMap is non-synchronized and allows null values and keys, while HashTable is synchronized and does not allow null values or keys.

    • HashMap is non-synchronized and not thread-safe, while HashTable is synchronized and thread-safe.

    • HashMap allows null values and keys, while HashTable does not allow null values or keys.

    • HashMap is generally preferred over HashTable for non-thread-safe operations due to better performance.

  • Answered by AI
  • Q2. What is final finally finalize
  • Ans. 

    final, finally, and finalize are keywords in Java used for different purposes.

    • final is a keyword used to declare constants, prevent method overriding, and prevent inheritance.

    • finally is a block of code that is always executed, whether an exception is thrown or not.

    • finalize is a method used for cleanup operations before an object is garbage collected.

  • Answered by AI
  • Q3. What is idempotent in API
  • Ans. 

    Idempotent in API means that making the same request multiple times has the same effect as making it once.

    • Idempotent operations produce the same result regardless of how many times they are called.

    • GET and PUT requests are typically idempotent, while POST requests are not.

    • For example, sending a PUT request to update a resource should have the same result whether it is sent once or multiple times.

  • Answered by AI
  • Q4. Pillars of JAVA and explain with example
  • Ans. 

    The pillars of JAVA are Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class. Example: class Dog extends Animal.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: private variables with public getter and setter methods.

    • Polymorphism: Ability of a method to do different things based on the ob...

  • Answered by AI

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed in Mar 2022. There were 4 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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Basic General questions .
Round 3 - Technical 

(1 Question)

  • Q1. Basic technical questions
Round 4 - HR 

(1 Question)

  • Q1. Basic technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - They will ask the basic technical questions. And some general questions.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Desired capabilities String immutable Xpath using text TestNG annotations Reverse string
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Python concept related prpgrams
  • Q2. Multithreaded related questions
Contribute & help others!
anonymous
You can choose to be anonymous

Nagarro Interview FAQs

How many rounds are there in Nagarro Qa Automation Testing Engineer interview?
Nagarro interview process usually has 2 rounds. The most common rounds in the Nagarro interview process are Aptitude Test and Technical.
What are the top questions asked in Nagarro Qa Automation Testing Engineer interview?

Some of the top questions asked at the Nagarro Qa Automation Testing Engineer interview -

  1. Which estimate technique you follow , if fibonacci then why it is in 1 2 3 5 8 ...read more
  2. Have u created the testplan document when porject was star...read more
  3. Sorting of hashmap using keys without any method. xpath for list of webelements...read more

Recently Viewed

INTERVIEWS

JGC Corporation

No Interviews

INTERVIEWS

Booz Allen Hamilton

No Interviews

INTERVIEWS

Alvarez & Marsal

No Interviews

INTERVIEWS

Publicis Sapient

No Interviews

INTERVIEWS

Alvarez & Marsal

No Interviews

INTERVIEWS

Sutherland Global Services

No Interviews

INTERVIEWS

Booz Allen Hamilton

No Interviews

INTERVIEWS

Booz & Company

No Interviews

INTERVIEWS

Reserve Bank Information Technology

No Interviews

INTERVIEWS

ITI

No Interviews

Tell us how to improve this page.

Nagarro Qa Automation Testing Engineer Interview Process

based on 3 interviews

Interview experience

4.3
  
Good
View more
Nagarro Qa Automation Testing Engineer Salary
based on 7 salaries
₹4 L/yr - ₹7 L/yr
6% less than the average Qa Automation Testing Engineer Salary in India
View more details

Nagarro Qa Automation Testing Engineer Reviews and Ratings

based on 2 reviews

2.9/5

Rating in categories

2.9

Skill development

3.5

Work-life balance

2.2

Salary

2.2

Job security

2.9

Company culture

2.9

Promotions

2.9

Work satisfaction

Explore 2 Reviews and Ratings
Associate Staff Engineer
2.9k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Staff Engineer
2.9k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Engineer
2.4k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
1.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Engineer
896 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Nagarro with

Deloitte

3.8
Compare

Cognizant

3.7
Compare

TCS

3.7
Compare

Accenture

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