Upload Button Icon Add office photos
Engaged Employer

i

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

TCS Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

TCS Test Engineer Interview Questions, Process, and Tips for Experienced

Updated 14 Feb 2025

Top TCS Test Engineer Interview Questions and Answers for Experienced

View all 15 questions

TCS Test Engineer Interview Experiences for Experienced

9 interviews found

Test Engineer Interview Questions & Answers

user image Vaibhav Dilip Shitole

posted on 13 Dec 2024

Interview experience
4
Good
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

    • Supports data-driven testing with external data sources like Excel or CSV files

  • Answered by AI
  • Q2. How to write listeners and use of it
  • Ans. 

    Listeners in test automation are used to capture and log events during test execution.

    • Listeners are interfaces that collect and display information about test execution.

    • They can be used to generate logs, reports, and screenshots during test runs.

    • Common listeners in test automation frameworks include TestNG listeners and JUnit listeners.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Describe Piller of oop?
  • Ans. 

    The pillars of OOP (Object-Oriented Programming) are encapsulation, inheritance, and polymorphism.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

    • Inheritance: Ability to create new classes based on existing classes, inheriting their attributes and methods.

    • Polymorphism: Ability for objects of different classes to respond to the same message in different ways.

  • Answered by AI

Test Engineer Interview Questions Asked at Other Companies for undefined

asked in Siemens
Q1. 2) In case of transformer, if current to the primary side is 50A ... read more
Q2. What is sdlc,stlc,smoke,sanity, regression,test strategy,test pla ... read more
asked in Infosys
Q3. What should be the Test cases of a Music Player?
Q4. What is RPA and how do you expect to solve the issues other than ... read more
Q5. Defect lifecycle, moratorium, what is NTC Customer, What is NPA, ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain java oops concept
  • Ans. 

    Java OOPs concept refers to the Object-Oriented Programming principles in Java, including encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding th...

  • Answered by AI
  • Q2. Explain java collection framework
  • Ans. 

    Java Collection Framework is a set of classes and interfaces that provide various data structures and algorithms to store and manipulate collections of objects.

    • It provides interfaces like List, Set, Map, Queue, etc. for different types of collections.

    • Classes like ArrayList, LinkedList, HashSet, HashMap, PriorityQueue, etc. implement these interfaces.

    • It includes algorithms like sorting, searching, and manipulation of co...

  • Answered by AI

Skills evaluated in this interview

Test Engineer Interview Questions & Answers

user image abdul razak

posted on 1 Jun 2024

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Selenium raleted Questions Java Language Questions TestNG framework Jira Git

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best

TCS interview questions for designations

 Automation Test Engineer

 (46)

 Senior Test Engineer

 (7)

 Manual Test Engineer

 (4)

 Performance Test Engineer

 (3)

 Functional Test Engineer

 (1)

 Junior Software Test Engineer

 (2)

 Associate Software Test Engineer

 (1)

 Senior Software Test Engineer

 (1)

Test Engineer Interview Questions & Answers

user image Anonymous

posted on 18 Jan 2022

I applied via Naukri.com and was interviewed in Jul 2021. There were 4 interview rounds.

Interview Questionnaire 

11 Questions

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

    Relative xpath is a path that starts from the node of the current element, while absolute xpath starts from the root node.

    • Relative xpath is shorter and more flexible than absolute xpath.

    • Relative xpath is recommended when the structure of the page is likely to change.

    • Absolute xpath is more specific and less prone to errors.

    • Absolute xpath is recommended when the structure of the page is unlikely to change.

    • Example of rela...

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

    POM stands for Page Object Model. It is a design pattern used in test automation to create object repositories for web UI elements.

    • POM separates the UI elements and the test code, making the code more maintainable and reusable.

    • Each web page is represented by a separate class in POM.

    • POM helps in reducing code duplication and improves test script maintenance.

    • POM is widely used in Selenium WebDriver test automation.

    • Exampl...

  • Answered by AI
  • Q3. What is Jenkins?
  • Ans. 

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

    • Jenkins allows for continuous integration and continuous delivery (CI/CD) of software projects.

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

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

    • Examples of plugins include ones for integrating with version control systems...

  • Answered by AI
  • Q4. Define constructor? constructor overloading?
  • Ans. 

    Constructor is a special method that is used to initialize objects. Constructor overloading is having multiple constructors with different parameters.

    • Constructor is called when an object is created

    • It has the same name as the class

    • It can have parameters

    • Constructor overloading is having multiple constructors with different parameters

    • Example: public class Person { public Person() {} public Person(String name) {} }

  • Answered by AI
  • Q5. Basic java programs?
  • Q6. What is method overloading and overriding?with example
  • Ans. 

    Method overloading and overriding are two concepts in object-oriented programming that allow methods to have multiple implementations.

    • Method overloading is when a class has multiple methods with the same name but different parameters.

    • Method overriding is when a subclass provides a different implementation of a method that is already defined in its superclass.

    • Example of method overloading: public void print(int num) and...

  • Answered by AI
  • Q7. What is TesNG? annotations of TestNg?
  • Ans. 

    TestNG is a testing framework for Java that supports various annotations to define test methods and their behavior.

    • TestNG is used for unit, functional, and integration testing

    • Annotations like @Test, @BeforeTest, @AfterTest, etc. are used to define test methods and their behavior

    • TestNG allows grouping of test methods and prioritizing their execution

    • TestNG also supports data-driven testing and parallel test execution

    • Exam...

  • Answered by AI
  • Q8. What is the importance of TestNg.xml file?
  • Ans. 

    TestNg.xml file is important for configuring and executing TestNG tests.

    • TestNg.xml file allows us to configure test suites, test cases, and test data.

    • It helps in grouping and prioritizing tests, setting up dependencies, and parallel execution.

    • We can also specify test parameters, listeners, and reporting options in the TestNg.xml file.

    • Example:

    • Example:

    • Example:

  • Answered by AI
  • Q9. Difference between Implicit wait and Explicit wait?
  • Ans. 

    Implicit wait is a global wait applied to all elements, while explicit wait is a wait applied to a specific element.

    • Implicit wait is set once and applied to all elements in the script

    • Explicit wait is set for a specific element and waits for a certain condition to be met

    • Implicit wait is set using the 'driver.manage().timeouts().implicitlyWait()' method

    • Explicit wait is set using the 'WebDriverWait' class and 'ExpectedCon...

  • Answered by AI
  • Q10. How to capture screenshot?
  • Ans. 

    Screenshots can be captured using built-in tools or third-party software.

    • On Windows, use the Snipping Tool or press Windows key + Print Screen

    • On Mac, press Command + Shift + 4

    • Third-party software like Greenshot or Lightshot can also be used

    • Screenshots can be saved as image files or copied to clipboard

  • Answered by AI
  • Q11. Difference between find elements and find element?
  • Ans. 

    find elements returns a list of web elements matching the locator, while find element returns the first web element matching the locator.

    • find elements returns a list of web elements, find element returns the first web element

    • find elements is used when multiple elements need to be located, find element is used when only one element is needed

    • find elements is useful for handling multiple elements like a list of links, fin...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was easy,just concentrate on basic things

Skills evaluated in this interview

Get interview-ready with Top TCS Interview Questions

Test Engineer Interview Questions & Answers

user image Anonymous

posted on 12 Jul 2022

I applied via Naukri.com and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Technical testing questions and SQL Queries then basic questions in automation
Round 2 - Technical 

(1 Question)

  • Q1. Technical testing questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Take interview when ever you got chance to attend the interview
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before May 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 tips
Round 2 - Coding Test 

Real time scenario test in coding

Round 3 - Technical 

(1 Question)

  • Q1. Basics on java,C,testing
Round 4 - HR 

(1 Question)

  • Q1. Location preference,hobbies,interests

Test Engineer Interview Questions & Answers

user image Anonymous

posted on 21 Apr 2023

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
4-6 weeks
Result
No response

I applied via Job Fair and was interviewed before Apr 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 tips
Round 2 - Aptitude Test 

Refer all questions asked before

Round 3 - Technical 

(1 Question)

  • Q1. Need to share job experience
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion

Test Engineer Interview Questions & Answers

user image Anonymous

posted on 15 Oct 2020

Interview Questionnaire 

1 Question

  • Q1. Testing related question they asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Read all thing you have wriiten in your resume

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude round consists Logical reasoning, General Aptitude, Grammar related questions etc. All are moderate level questions.

Round 2 - Technical 

(3 Questions)

  • Q1. Explain OOPs w.r.t Java
  • Ans. 

    OOPs is a programming paradigm that uses objects to represent real-world entities. Java is an OOPs language.

    • OOPs stands for Object-Oriented Programming System

    • Java is a class-based OOPs language

    • Encapsulation, Inheritance, Polymorphism, and Abstraction are the four pillars of OOPs

    • Objects have state and behavior

    • Java supports interfaces, which allow for multiple inheritance

    • Example: A car can be represented as an object wit...

  • Answered by AI
  • Q2. Explain about the projects that you have worked on
  • Q3. Explain how Java solves machine dependency of code execution
  • Ans. 

    Java solves machine dependency by using bytecode and virtual machine.

    • Java code is compiled into bytecode which is platform-independent

    • The bytecode is executed by the Java Virtual Machine (JVM) which is platform-specific

    • JVM translates bytecode into machine code for the specific platform

    • This allows Java code to run on any platform with a JVM installed

    • Example: A Java program compiled on Windows can run on Linux or Mac as

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Why should we hire you?
  • Q2. Tell me about yourself.

Interview Preparation Tips

Topics to prepare for Infosys System Engineer interview:
  • Java
Interview preparation tips for other job seekers - Keep it simple, Prepare basics of 1st preferred Programming Language.

Skills evaluated in this interview

TCS Interview FAQs

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

Some of the top questions asked at the TCS Test Engineer interview for experienced candidates -

  1. How to capture screensh...read more
  2. What is method overloading and overriding?with exam...read more
  3. What is the importance of TestNg.xml fi...read more
How long is the TCS Test Engineer interview process?

The duration of TCS Test Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

TCS Test Engineer Interview Process for Experienced

based on 6 interviews

1 Interview rounds

  • Technical Round
View more
TCS Test Engineer Salary
based on 3.6k salaries
₹1 L/yr - ₹9.5 L/yr
5% less than the average Test Engineer Salary in India
View more details

TCS Test Engineer Reviews and Ratings

based on 255 reviews

4.0/5

Rating in categories

3.7

Skill development

4.0

Work-life balance

3.1

Salary

4.5

Job security

4.0

Company culture

3.1

Promotions

3.6

Work satisfaction

Explore 255 Reviews and Ratings
System Engineer
1.1L salaries
unlock blur

₹0 L/yr - ₹0 L/yr

IT Analyst
66.6k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

AST Consultant
51.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant System Engineer
29.8k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Consultant
29.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare TCS with

Amazon

4.1
Compare

Wipro

3.7
Compare

Infosys

3.6
Compare

Accenture

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