Upload Button Icon Add office photos
Premium Employer

i

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

NTT Data

Compare button icon Compare button icon Compare
3.9

based on 3.6k Reviews

Filter interviews by

NTT Data Automation Test Engineer Interview Questions and Answers

Updated 22 Nov 2024

NTT Data Automation Test Engineer Interview Experiences

4 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Approached by Company

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me your Self introduce
  • Q2. Tell me project structure
  • Ans. 

    Project structure refers to the organization of files, folders, and resources within a software project.

    • Main folders like src (source code), test (test cases), lib (libraries), docs (documentation)

    • Subfolders for specific modules or components

    • Configuration files like pom.xml, package.json, etc.

    • Build scripts like Jenkinsfile, Dockerfile

    • Version control files like .gitignore, .gitattributes

    • README.md file for project overvi

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Skill preparation
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Mar 2023. 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 - HR 

(2 Questions)

  • Q1. 1.Explain yourself? 2. What framework are you working on? 3. What are different types of waits?
  • Ans. 

    I am an automation test engineer with experience in working on various frameworks and implementing different types of waits.

    • I have experience in working on frameworks like Selenium, Appium, TestNG, and JUnit.

    • I have implemented different types of waits like implicit wait, explicit wait, and fluent wait.

    • Implicit wait is used to wait for a certain amount of time before throwing an exception if the element is not found.

    • Exp...

  • Answered by AI
  • Q2. What are your expectations from us?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare about your current project and your role in it.

Automation Test Engineer Interview Questions Asked at Other Companies

asked in TCS
Q1. How to handle scrollbar and mouse activities Jenkins and Github S ... read more
asked in Infosys
Q2. Introduce yourself 1.What is STLC 2. difference between Test plan ... read more
Q3. What is Automation? what is selenium?what is xpath? what is regre ... read more
asked in TCS
Q4. 1) cucumber 2) Defects worked on, tell me about the bugs you foun ... read more
asked in Capgemini
Q5. 1] Introduction 2] Sanity Vs Smoke testing 3] Waits in selenium a ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Project related Questions..real time scenarios
Round 2 - Technical 

(1 Question)

  • Q1. Java related programs
Round 3 - HR 

(1 Question)

  • Q1. Introduce about yourself

What people are saying about NTT Data

View All
optimisticbox
Verified Icon
6d (edited)
ex -
Dbiz.Ai
Referral pls help me!!!
Anyone from NTT DATA ?? Please help me with the referral. Comment please, I'll DM you 🙂 NTT Data
Got a question about NTT Data?
Ask anonymously on communities.

I was interviewed before Jun 2020.

Interview Questionnaire 

1 Question

  • Q1. Selenium web driver, SQL database, query about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good in Comms, be technically prepared.

NTT Data interview questions for designations

 Sdet Automation Test Engineer

 (1)

 Tosca Automation Test Engineer

 (1)

 Test Engineer

 (1)

 Senior Test Engineer

 (5)

 QA Test Engineer

 (1)

 Test Analyst

 (1)

 Test Lead

 (1)

 Selenium Automation Tester

 (2)

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - Technical 

(5 Questions)

  • Q1. Current Project
  • Q2. Framework Structure
  • Q3. Code for sorting an array
  • Q4. Create Xpath
  • Q5. Few Appium related questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Few scenario based questions
  • Q2. Why GlobalLogic
Round 3 - Technical 

(1 Question)

  • Q1. Project related questions
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(9 Questions)

  • Q1. Difference between absolute and relative Xpath
  • Ans. 

    Absolute Xpath starts from the root element, while relative Xpath starts from any node in the DOM structure.

    • Absolute Xpath starts with a single forward slash (/) and starts selection from the root node.

    • Relative Xpath starts with a double forward slash (//) and starts selection from the current node or any node in the DOM structure.

    • Absolute Xpath is more brittle and prone to breaking if the structure of the page changes...

  • Answered by AI
  • Q2. What would be return if multiple tabs are open
  • Ans. 

    The return would be the number of tabs open in the browser.

    • The return value would be an integer representing the count of open tabs.

    • For example, if there are 5 tabs open, the return value would be 5.

  • Answered by AI
  • Q3. What are the waits in selenium
  • Ans. 

    Types of waits in Selenium include Implicit Wait, Explicit Wait, and Fluent Wait.

    • Implicit Wait: Waits for a certain amount of time before throwing a NoSuchElementException.

    • Explicit Wait: Waits for a certain condition to occur before proceeding further in the code.

    • Fluent Wait: Waits for a condition to be true with a defined polling frequency.

    • Example: driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);

  • Answered by AI
  • Q4. Exceptions in selenium
  • Ans. 

    Exceptions in Selenium are errors that occur during test execution, disrupting the flow of the test script.

    • Exceptions are thrown when there is an unexpected behavior in the application under test or in the test script itself.

    • Common exceptions in Selenium include NoSuchElementException, ElementNotVisibleException, TimeoutException, and StaleElementReferenceException.

    • Handling exceptions in Selenium can be done using try-...

  • Answered by AI
  • Q5. What is feature and step definitions in cucumber BDD
  • Ans. 

    Feature files contain high-level description of the functionality to be tested, while step definitions are the implementation of the steps in the feature file using code.

    • Feature files are written in Gherkin syntax and describe the behavior of the application in plain text.

    • Step definitions are written in programming languages like Java, Ruby, etc., and map the steps in the feature file to automation code.

    • Feature files a...

  • Answered by AI
  • Q6. How to input data in cucumber
  • Ans. 

    Data can be input in Cucumber using feature files and step definitions.

    • Data can be input in feature files using scenarios and scenario outlines

    • Step definitions can be used to define the actions to be taken with the input data

    • Data tables can be used in feature files to input structured data

    • Examples keyword can be used in scenario outlines to provide multiple sets of input data

  • Answered by AI
  • Q7. Basic Java questions like access modifiers, method overloading and overriding
  • Q8. What is Test case, Test plan and Test Secenarios
  • Ans. 

    Test case is a set of conditions or variables under which a tester will determine whether a system under test satisfies requirements. Test plan is a document outlining the scope, approach, resources, and schedule of testing activities. Test scenarios are detailed descriptions of possible interactions with the system.

    • Test case: specific conditions to be tested, expected results, steps to execute

    • Test plan: overall strate...

  • Answered by AI
  • Q9. Hooks in Java
  • Ans. 

    Hooks in Java are methods that allow subclasses to override or extend the behavior of a superclass.

    • Hooks are commonly used in frameworks like JUnit and TestNG for test automation.

    • They are often used for setup and teardown operations before and after test methods.

    • Examples include @Before, @After, @BeforeClass, and @AfterClass annotations in JUnit.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The second round interview was quite challenging, with numerous questions focused on core Java topics such as data structures and linked lists. It felt less like a testing interview and more akin to a developer interview.

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 in Nov 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Java related coding and questions related to selenium

Round 2 - Technical 

(1 Question)

  • Q1. Selenium,java,testng,cucumber related questions
Round 3 - Technical 

(1 Question)

  • Q1. Framework Related Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Must have knowledge in framework that we use
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Explain selenium framework
  • Ans. 

    Selenium framework is a test automation tool used for web applications.

    • Selenium framework allows for automated testing of web applications.

    • It supports multiple programming languages like Java, Python, C#, etc.

    • Selenium WebDriver is a key component for interacting with web elements.

    • Test scripts can be written using Selenium IDE, WebDriver, or Grid.

    • Selenium framework can be integrated with tools like TestNG, JUnit, etc.,

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. List, lambda function, reverse string program
  • Q2. Sort the list, dictionary
Round 2 - Technical 

(1 Question)

  • Q1. OOP concept, Decorator, list to dictionary, Linux
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Write a program to reverse a number
  • Ans. 

    Program to reverse a number

    • Convert the number to a string to easily manipulate each digit

    • Iterate through the string in reverse order and append each digit to a new string

    • Convert the reversed string back to an integer and return

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

(1 Question)

  • Q1. What are your expectations

NTT Data Interview FAQs

How many rounds are there in NTT Data Automation Test Engineer interview?
NTT Data interview process usually has 2 rounds. The most common rounds in the NTT Data interview process are Technical, HR and Resume Shortlist.
How to prepare for NTT Data Automation Test Engineer 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 NTT Data. The most common topics and skills that interviewers at NTT Data expect are Automation Testing, Cucumber, Java, Selenium and Selenium IDE.
What are the top questions asked in NTT Data Automation Test Engineer interview?

Some of the top questions asked at the NTT Data Automation Test Engineer interview -

  1. 1.Explain yourself? 2. What framework are you working on? 3. What are different...read more
  2. Tell me project struct...read more
  3. Project related Questions..real time scenar...read more

Tell us how to improve this page.

NTT Data Automation Test Engineer Salary
based on 93 salaries
₹3.5 L/yr - ₹9.5 L/yr
24% less than the average Automation Test Engineer Salary in India
View more details

NTT Data Automation Test Engineer Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

4.2

Skill development

5.0

Work-life balance

4.2

Salary

5.0

Job security

4.2

Company culture

5.0

Promotions

4.2

Work satisfaction

Explore 2 Reviews and Ratings
Software Engineer
938 salaries
unlock blur

₹2.8 L/yr - ₹11 L/yr

Senior Associate
766 salaries
unlock blur

₹1.2 L/yr - ₹7.3 L/yr

Network Engineer
653 salaries
unlock blur

₹1.8 L/yr - ₹10 L/yr

Software Developer
614 salaries
unlock blur

₹2.5 L/yr - ₹13 L/yr

Senior Software Engineer
510 salaries
unlock blur

₹6.5 L/yr - ₹25.5 L/yr

Explore more salaries
Compare NTT Data with

Tata Communications

4.1
Compare

Bharti Airtel

4.0
Compare

Reliance Communications

4.0
Compare

Vodafone Idea

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