Upload Button Icon Add office photos
Premium Employer

i

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

based on 2.7k Reviews

Filter interviews by

NTT Data Information Processing Services QA Test Engineer Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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

I applied via Campus Placement

Round 1 - Aptitude Test 

Aptitude test (Verbal ,Quants,Logic)

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

I applied via campus placement at Sambhram Institute of Technology, Bangalore and was interviewed before Oct 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

It was computer based aptitude test.

Round 2 - Group Discussion 

They took GD for 6 people at once by gaving a common topic to talk about with individual time constraints.

Round 3 - Technical 

(1 Question)

  • Q1. Asked few basic C programming questions.
Round 4 - HR 

(2 Questions)

  • Q1. Asked regarding the resume and their company
  • Q2. Where is the headquarters of NTT located
  • Ans. 

    NTT's headquarters is located in Tokyo, Japan.

    • NTT's headquarters is in Tokyo, Japan

    • NTT stands for Nippon Telegraph and Telephone Corporation

    • Tokyo is the capital city of Japan

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Selenium vs cypress
  • Ans. 

    Selenium is a widely used open-source tool for web automation testing, while Cypress is a newer tool known for its fast and reliable testing capabilities.

    • Selenium is more established and has a larger community support

    • Cypress is known for its fast test execution times

    • Cypress has built-in support for modern web technologies like React and Angular

    • Selenium supports multiple programming languages like Java, Python, and C#

    • Cy...

  • Answered by AI
  • Q2. How do you install cypress
  • Ans. 

    Cypress can be installed using npm package manager.

    • Install Node.js if not already installed

    • Open terminal and run 'npm install cypress'

    • Once installation is complete, run 'npx cypress open' to open Cypress Test Runner

  • Answered by AI
  • Q3. Reverse a string in Javascript
  • Ans. 

    Reverse a string in Javascript

    • Use the split() method to convert the string into an array of characters

    • Use the reverse() method to reverse the order of the characters

    • Use the join() method to convert the array back into a string

  • Answered by AI

Skills evaluated in this interview

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
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Aptitude Test 

20 aptitude questions and 50 technical questions

Round 2 - One-on-one 

(10 Questions)

  • Q1. Tell me about your self
  • Q2. Explain automation framework
  • Ans. 

    Automation framework is a set of guidelines, rules, and tools that help in creating and executing automated tests.

    • Automation framework provides structure and guidelines for creating automated tests

    • It helps in organizing test scripts, data, and results

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

    • Examples of automation frameworks include Selenium WebDriver, TestNG, and Robot Framework

  • Answered by AI
  • Q3. Java code for sorting without using built in function
  • Ans. 

    Sorting array of strings in Java without using built-in functions

    • Create a custom sorting algorithm like bubble sort, selection sort, or insertion sort

    • Compare each pair of strings and swap them if necessary to sort in ascending order

    • Repeat the process until the array is fully sorted

  • Answered by AI
  • Q4. Explain testng annotations and how will we use annotation in our framework
  • Ans. 

    TestNG annotations are used to control the flow of test methods and provide additional information about the test methods.

    • TestNG annotations are used to mark methods as test methods, setup methods, teardown methods, etc.

    • Annotations like @Test, @BeforeMethod, @AfterMethod, @BeforeClass, @AfterClass, @BeforeSuite, @AfterSuite are commonly used in TestNG framework.

    • Annotations help in organizing and prioritizing test metho...

  • Answered by AI
  • Q5. What is testng listener
  • Ans. 

    TestNG listener is an interface that allows users to customize the test execution process.

    • TestNG listeners can be used to perform actions before or after a test method is run.

    • Listeners can be used to generate logs, take screenshots, or perform other custom actions during test execution.

    • Examples of TestNG listeners include ITestListener, ISuiteListener, and IInvokedMethodListener.

  • Answered by AI
  • Q6. What is overriding and where it is used in automation framework
  • Ans. 

    Overriding is a concept in object-oriented programming where a subclass provides a specific implementation of a method that is already provided by its superclass.

    • Overriding allows a subclass to provide a specific implementation of a method that is already provided by its superclass

    • It is used in automation frameworks to customize or extend the functionality of existing methods or classes

    • In automation testing, overriding...

  • Answered by AI
  • Q7. Explain bdd hooks and tags
  • Ans. 

    BDD hooks and tags are used in Behavior-Driven Development to set up preconditions and execute actions before or after scenarios, and to categorize and filter scenarios.

    • BDD hooks are used to set up preconditions and execute actions before or after scenarios

    • Tags are used to categorize and filter scenarios based on certain criteria

    • Hooks can be used to perform setup and teardown actions, such as initializing test data or ...

  • Answered by AI
  • Q8. Explain bdd background keyword
  • Ans. 

    BDD background keyword is used to define common preconditions for all scenarios in a feature file.

    • Used at the beginning of a feature file to define common preconditions

    • Helps in setting up the initial state for all scenarios in the feature file

    • Reduces duplication of steps in scenarios by defining them once in the background

  • Answered by AI
  • Q9. Explain ci/cd pipeline using jenkins
  • Ans. 

    CI/CD pipeline using Jenkins automates the process of integrating code changes and deploying them to production.

    • Jenkins is a popular automation server used for CI/CD

    • CI/CD stands for Continuous Integration/Continuous Deployment

    • In a CI/CD pipeline, code changes are automatically built, tested, and deployed

    • Jenkins pipelines can be defined using a Jenkinsfile which specifies the stages and steps of the pipeline

    • Example: Che...

  • Answered by AI
  • Q10. Explain rest assured and write a code for post and verify the response
  • Ans. 

    Rest Assured is a Java library for testing RESTful APIs. It simplifies API testing by providing a fluent interface to make HTTP requests and validate responses.

    • Rest Assured is commonly used in API automation testing to validate the functionality of RESTful APIs.

    • It allows testers to easily make HTTP requests, set headers, parameters, and body, and validate the response.

    • Here is an example code snippet for posting data an...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare all concepts in framwork

Skills evaluated in this interview

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

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

Round 1 - Technical 

(5 Questions)

  • Q1. Explain about yourself
  • Q2. What is exploratory testing and adhoc testing and how you used these in your project?
  • Ans. 

    Exploratory testing is a simultaneous learning, test design, and test execution approach. Adhoc testing is an informal testing approach without any predefined test cases.

    • Exploratory testing involves exploring the software, learning about it, and designing and executing tests on the fly.

    • Adhoc testing is unplanned and unstructured testing where testers randomly test the application without any specific test cases.

    • In my p...

  • Answered by AI
  • Q3. Roles and responsibilities in your previous projects
  • Q4. Difference between mobile and web testing?
  • Ans. 

    Mobile testing focuses on apps for smartphones and tablets, while web testing focuses on websites accessed through browsers.

    • Mobile testing involves testing apps on different devices and operating systems.

    • Web testing involves testing websites on different browsers and screen sizes.

    • Mobile testing includes testing for touch gestures and device-specific features.

    • Web testing includes testing for cross-browser compatibility ...

  • Answered by AI
  • Q5. Challenges faced in your last project?

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Explain the framework structure
  • Ans. 

    Framework structure refers to the organization of test automation code, including folders, files, libraries, and configurations.

    • Framework structure typically includes folders for test scripts, test data, page objects, utilities, and configurations.

    • It may involve separation of concerns, such as using Page Object Model for better maintainability.

    • Frameworks like TestNG or JUnit provide annotations to structure test cases ...

  • Answered by AI
  • Q2. Tell me about yourself
  • Ans. 

    I am a dedicated Automation Test Engineer with 5 years of experience in creating and executing test cases for software applications.

    • Experienced in creating automated test scripts using tools like Selenium and Appium

    • Proficient in identifying bugs and issues in software applications

    • Skilled in writing test plans and test cases to ensure comprehensive test coverage

    • Strong knowledge of programming languages such as Java and ...

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Explain your framework
  • Ans. 

    My framework is a data-driven automation framework using Selenium and TestNG.

    • Utilizes Selenium for web automation

    • Uses TestNG for test case management and execution

    • Data-driven approach for test data separation

    • Supports parallel execution for faster testing

    • Includes reporting tools like ExtentReports for detailed test results

  • Answered by AI
  • Q2. Explain oops concept
  • Ans. 

    OOPs concept is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOPs stands for Object-Oriented Programming

    • Key concepts include classes, objects, inheritance, polymorphism, and encapsulation

    • Classes are blueprints for objects, defining their properties and behaviors

    • Objects are instances of classes, representing real-world entities

    • Inh...

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Questions on switching
  • Q2. Packet flow in routers, osi model , etc
  • Ans. 

    Packet flow in routers involves data transmission through different layers of the OSI model.

    • Packet flow starts at the network layer where packets are routed based on IP addresses.

    • Packets then move to the data link layer where MAC addresses are used for communication.

    • Finally, packets are transmitted physically through the network interface.

    • OSI model consists of 7 layers: Physical, Data Link, Network, Transport, Session,

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Assignment 

Product tester verious product tester

Interview Preparation Tips

Interview preparation tips for other job seekers - Keeping growing up

NTT Data Information Processing Services Interview FAQs

How to prepare for NTT Data Information Processing Services QA 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 Information Processing Services. The most common topics and skills that interviewers at NTT Data Information Processing Services expect are Automation Testing, Defect Prevention, JIRA, Java and QA.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
View all
NTT Data Information Processing Services QA Test Engineer Salary
based on 17 salaries
₹3.5 L/yr - ₹10 L/yr
29% more than the average QA Test Engineer Salary in India
View more details

NTT Data Information Processing Services QA Test Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-Life balance

5.0

Salary & Benefits

5.0

Job Security

5.0

Company culture

5.0

Promotions/Appraisal

5.0

Work Satisfaction

Explore 1 Review and Rating
Senior Associate
461 salaries
unlock blur

₹1.6 L/yr - ₹8 L/yr

Software Development Senior Analyst
431 salaries
unlock blur

₹4.5 L/yr - ₹16 L/yr

Software Development Analyst
400 salaries
unlock blur

₹3.5 L/yr - ₹11.5 L/yr

Software Development Specialist
322 salaries
unlock blur

₹6.8 L/yr - ₹18.5 L/yr

Software Engineer
300 salaries
unlock blur

₹2.8 L/yr - ₹10.7 L/yr

Explore more salaries
Compare NTT Data Information Processing Services with

Accenture

3.9
Compare

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

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