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 QA Tester Interview Questions and Answers

Updated 21 Oct 2024

10 Interview questions

🔥 Asked by recruiter 3 times
A QA Tester was asked 9mo ago
Q. Tell me about OOP concepts.
Ans. 

Oops concepts refer to Object-Oriented Programming principles such as Inheritance, Encapsulation, Polymorphism, and Abstraction.

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

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

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

  • Abstraction: Hiding the complex implementatio...

🔥 Asked by recruiter 3 times
A QA Tester was asked 12mo ago
Q. What is the difference between throw and throws?
Ans. 

throw is a keyword used to throw an exception in Java, while throws is used in method signature to declare exceptions that can be thrown by the method.

  • throw is used to throw an exception explicitly in Java

  • throws is used in method signature to declare exceptions that can be thrown by the method

  • Example: throw new Exception();

  • Example: public void method() throws Exception {};

QA Tester Interview Questions Asked at Other Companies

asked in Babel Media
Q1. If you are given a ball pen tested for the Indian market, and now ... read more
Q2. Can you write a query to display the age of employees from highes ... read more
Q3. Can you write a test case for a web page that has username and pa ... read more
Q4. What is regression testing? When and why we do should regression ... read more
asked in Infosys
Q5. How do you automate a login script using a username and password ... read more
A QA Tester was asked 12mo ago
Q. What is the difference between BDD and Cucumber?
Ans. 

BDD is a software development approach that focuses on collaboration between developers, testers, and business stakeholders, while Cucumber is a tool used for implementing BDD in testing.

  • BDD is a development approach that emphasizes collaboration and communication between different stakeholders, such as developers, testers, and business analysts.

  • Cucumber is a testing tool that allows for the implementation of BDD ...

A QA Tester was asked 12mo ago
Q. Explain the differences between Agile and Waterfall methodologies.
Ans. 

Agile is iterative and flexible, while waterfall is sequential and rigid.

  • Agile involves incremental development and frequent feedback loops.

  • Waterfall follows a linear approach with distinct phases like requirements, design, development, testing, and deployment.

  • Agile allows for changes and adaptations throughout the project.

  • Waterfall requires detailed planning upfront and minimal changes once development begins.

  • Agi...

What people are saying about TCS

View All
a digital marketer
now
Do you think they're gonna work on employees' work-life balance, OR for just publicity?
Infosys, Infosys, TCS, Genpact Revise Workplace Policies Infosys is sending a warning mail, if an employee overshoots the daily limit while working remotely, the system triggers a notification Genpact introduced a new policy to log in before 11 am But will these companies really change, or is it just a show to mask their issues?
FeedCard Image
Got a question about TCS?
Ask anonymously on communities.
🔥 Asked by recruiter 2 times
A QA Tester was asked 12mo ago
Q. Explain the different types of joins in SQL.
Ans. 

Different types of joins in SQL include inner join, left join, right join, and full outer join.

  • Inner join: Returns rows when there is a match in both tables

  • Left join: Returns all rows from the left table and the matched rows from the right table

  • Right join: Returns all rows from the right table and the matched rows from the left table

  • Full outer join: Returns rows when there is a match in either table

A QA Tester was asked
Q. Explain the SDLC cycle.
Ans. 

SDLC (Software Development Life Cycle) is a process used by software development teams to design, develop, test, and deploy software.

  • SDLC consists of several phases including planning, analysis, design, implementation, testing, and maintenance.

  • Each phase has its own set of activities and deliverables that must be completed before moving on to the next phase.

  • SDLC helps ensure that software projects are completed on...

A QA Tester was asked
Q. Explain the bug life cycle.
Ans. 

Bug cycle is the process of identifying, reporting, fixing, retesting, and closing bugs in a software development project.

  • Bug is identified by tester during testing phase

  • Bug is reported to development team

  • Development team fixes the bug

  • Tester retests the bug fix

  • If bug is resolved, it is closed

Are these interview questions helpful?
A QA Tester was asked
Q. Explain how you prioritize tasks.
Ans. 

Priority in software testing refers to the order in which defects or test cases should be addressed based on their impact and importance.

  • Priority helps in determining which issues should be fixed first to ensure the most critical functionalities are working properly.

  • Priority is usually assigned based on factors like severity, impact on users, and business requirements.

  • For example, a critical bug that causes the ap...

A QA Tester was asked
Q. Explain the STLC cycle.
Ans. 

STLC (Software Testing Life Cycle) outlines the phases of software testing from planning to closure.

  • 1. Requirement Analysis: Understand testing requirements based on specifications.

  • 2. Test Planning: Define the scope, resources, and schedule for testing.

  • 3. Test Case Design: Create detailed test cases and scenarios for testing.

  • 4. Test Environment Setup: Prepare the environment where testing will occur.

  • 5. Test Execut...

A QA Tester was asked 9mo ago
Q. What do u know about manual and automation testing
Ans. 

Manual testing involves human testers executing test cases without automation tools, while automation testing uses tools to execute test cases.

  • Manual testing requires human intervention to execute test cases and verify results

  • Automation testing involves using tools to automate test case execution and result verification

  • Manual testing is time-consuming and prone to human error

  • Automation testing is faster, more reli...

TCS QA Tester Interview Experiences

6 interviews found

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

(2 Questions)

  • Q1. Tell me about Oops concepts
  • Ans. 

    Oops concepts refer to Object-Oriented Programming principles such as Inheritance, Encapsulation, Polymorphism, and Abstraction.

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

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

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

    • Abstraction: Hiding the complex implementation det...

  • Answered by AI
  • Q2. What do u know about manual and automation testing
  • Ans. 

    Manual testing involves human testers executing test cases without automation tools, while automation testing uses tools to execute test cases.

    • Manual testing requires human intervention to execute test cases and verify results

    • Automation testing involves using tools to automate test case execution and result verification

    • Manual testing is time-consuming and prone to human error

    • Automation testing is faster, more reliable,...

  • Answered by AI

Skills evaluated in this interview

QA Tester Interview Questions & Answers

user image Anonymous

posted on 27 Jun 2024

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

(2 Questions)

  • Q1. Difference between throw and throws
  • Ans. 

    throw is a keyword used to throw an exception in Java, while throws is used in method signature to declare exceptions that can be thrown by the method.

    • throw is used to throw an exception explicitly in Java

    • throws is used in method signature to declare exceptions that can be thrown by the method

    • Example: throw new Exception();

    • Example: public void method() throws Exception {};

  • Answered by AI
  • Q2. Difference between bdd and cucumber
  • Ans. 

    BDD is a software development approach that focuses on collaboration between developers, testers, and business stakeholders, while Cucumber is a tool used for implementing BDD in testing.

    • BDD is a development approach that emphasizes collaboration and communication between different stakeholders, such as developers, testers, and business analysts.

    • Cucumber is a testing tool that allows for the implementation of BDD pract...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Salary expectation
  • Q2. Which Work location u need

Skills evaluated in this interview

QA Tester Interview Questions & Answers

user image Anonymous

posted on 5 Jun 2024

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

(2 Questions)

  • Q1. Explain Agile vs waterfall
  • Ans. 

    Agile is iterative and flexible, while waterfall is sequential and rigid.

    • Agile involves incremental development and frequent feedback loops.

    • Waterfall follows a linear approach with distinct phases like requirements, design, development, testing, and deployment.

    • Agile allows for changes and adaptations throughout the project.

    • Waterfall requires detailed planning upfront and minimal changes once development begins.

    • Agile is...

  • Answered by AI
  • Q2. Explain different types of joins in sql
  • Ans. 

    Different types of joins in SQL include inner join, left join, right join, and full outer join.

    • Inner join: Returns rows when there is a match in both tables

    • Left join: Returns all rows from the left table and the matched rows from the right table

    • Right join: Returns all rows from the right table and the matched rows from the left table

    • Full outer join: Returns rows when there is a match in either table

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep study

Skills evaluated in this interview

QA Tester Interview Questions & Answers

user image Mohamed Ashik

posted on 21 Oct 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I appeared for an interview before Oct 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Yyyyyyjhggggggghhbvvgfffrdssdfhjjjnbb
  • Q2. Yyyycgghbygghgfghgffffgfgghhgfrtttffffdiihggttgggggt

QA Tester Interview Questions & Answers

user image Anonymous

posted on 30 Aug 2023

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

I applied via Naukri.com and was interviewed before Aug 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 tips
Round 2 - Coding Test 

Technical skills related to manual automation as per JD

Round 3 - Technical 

(5 Questions)

  • Q1. Tell me about your self Project flow Sdlc Bug life cycle Priority severity
  • Q2. Sdlc cycle explain
  • Ans. 

    SDLC (Software Development Life Cycle) is a process used by software development teams to design, develop, test, and deploy software.

    • SDLC consists of several phases including planning, analysis, design, implementation, testing, and maintenance.

    • Each phase has its own set of activities and deliverables that must be completed before moving on to the next phase.

    • SDLC helps ensure that software projects are completed on time...

  • Answered by AI
  • Q3. Stlc cycle wxplain
  • Ans. 

    STLC (Software Testing Life Cycle) outlines the phases of software testing from planning to closure.

    • 1. Requirement Analysis: Understand testing requirements based on specifications.

    • 2. Test Planning: Define the scope, resources, and schedule for testing.

    • 3. Test Case Design: Create detailed test cases and scenarios for testing.

    • 4. Test Environment Setup: Prepare the environment where testing will occur.

    • 5. Test Execution: ...

  • Answered by AI
  • Q4. Bug cycle explain
  • Ans. 

    Bug cycle is the process of identifying, reporting, fixing, retesting, and closing bugs in a software development project.

    • Bug is identified by tester during testing phase

    • Bug is reported to development team

    • Development team fixes the bug

    • Tester retests the bug fix

    • If bug is resolved, it is closed

  • Answered by AI
  • Q5. Priority explain
  • Ans. 

    Priority in software testing refers to the order in which defects or test cases should be addressed based on their impact and importance.

    • Priority helps in determining which issues should be fixed first to ensure the most critical functionalities are working properly.

    • Priority is usually assigned based on factors like severity, impact on users, and business requirements.

    • For example, a critical bug that causes the applica...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for TCS QA Tester interview:
  • Manual Testing
  • API Testing
Interview preparation tips for other job seekers - Be prepare for basics

Skills evaluated in this interview

QA Tester Interview Questions & Answers

user image Anonymous

posted on 11 Oct 2022

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. Tell me about yoursef
  • Q2. What you like to do while not

Interview Preparation Tips

Interview preparation tips for other job seekers - clear your basics be calm and answervb properly do not hesitate or mur mur in between low salary high attrition rate

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. Technical
  • Q2. Be yourself
Are these interview questions helpful?

I applied via Naukri.com and was interviewed before Feb 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What are different types of cloud?
  • Q2. What is workflow,trigger, different types of reports, roles, profiles, permission set, sharing rules etc?
  • Ans. 

    Workflow, trigger, reports, roles, profiles, permission set, and sharing rules are all important features in Salesforce.

    • Workflow is a series of automated steps that can be used to streamline business processes.

    • Triggers are used to execute code before or after a record is inserted, updated, or deleted.

    • Reports are used to display data in a visual format, such as a table or chart.

    • Roles are used to define the hierarchy of ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Google the question related to your topic and also become 100% prepared with your resume.

Skills evaluated in this interview

I applied via Company Website and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. GL related questions
  • Q2. Comfortable for night shifts
  • Ans. 

    Yes, I am comfortable with night shifts and have experience working during those hours.

    • I have worked night shifts in my previous job and have adapted to the schedule

    • I am a night owl and prefer working during those hours

    • I understand the importance of being alert and focused during night shifts

    • I am willing to adjust my sleep schedule to accommodate night shifts

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn about GL and accounting policies

I applied via Naukri.com and was interviewed before Mar 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Excel, Operations, supply chain

Interview Preparation Tips

Interview preparation tips for other job seekers - The process took a whole month. The waiting hours are long. Brush up on your skills and be confident. Lot of times they look at how well you answer and are trying to gauge how your mind works.

TCS Interview FAQs

How many rounds are there in TCS QA Tester interview?
TCS interview process usually has 1-2 rounds. The most common rounds in the TCS interview process are Technical, Resume Shortlist and HR.
How to prepare for TCS QA Tester 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 TCS. The most common topics and skills that interviewers at TCS expect are QA Testing.
What are the top questions asked in TCS QA Tester interview?

Some of the top questions asked at the TCS QA Tester interview -

  1. What do u know about manual and automation test...read more
  2. Explain different types of joins in ...read more
  3. Tell me about Oops conce...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.3/5

based on 8 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

QA Tester Interview Questions from Similar Companies

IBM QA Tester Interview Questions
4.0
 • 2 Interviews
View all
TCS QA Tester Salary
based on 543 salaries
₹3 L/yr - ₹8.2 L/yr
At par with the average QA Tester Salary in India
View more details

TCS QA Tester Reviews and Ratings

based on 41 reviews

4.1/5

Rating in categories

3.8

Skill development

4.1

Work-life balance

3.2

Salary

4.7

Job security

4.1

Company culture

3.1

Promotions

3.8

Work satisfaction

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

₹1 L/yr - ₹9 L/yr

IT Analyst
65.5k salaries
unlock blur

₹7.9 L/yr - ₹14.5 L/yr

AST Consultant
53.6k salaries
unlock blur

₹12 L/yr - ₹20.6 L/yr

Assistant System Engineer
33.2k salaries
unlock blur

₹2.5 L/yr - ₹5 L/yr

Associate Consultant
32.9k salaries
unlock blur

₹16.2 L/yr - ₹28 L/yr

Explore more salaries
Compare TCS with

Amazon

4.0
Compare

Wipro

3.7
Compare

Infosys

3.6
Compare

Accenture

3.7
Compare
write
Share an Interview