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
3.7

based on 86.6k Reviews

Filter interviews by

TCS QA QC Engineer Interview Questions, Process, and Tips

Updated 15 Jan 2025

Top TCS QA QC Engineer Interview Questions and Answers

  • Q1. By using driver.findElements().find All elements in the application . using looping "for" to print All links one by one
  • Q2. Whdn prioty -1 and 1 is implimented which will execute first
  • Q3. How to check an integer is palindrome or not
View all 13 questions

TCS QA QC Engineer Interview Experiences

8 interviews found

QA QC Engineer Interview Questions & Answers

user image Eswar Eswar

posted on 15 Jan 2025

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

Print the webtable and gett all the data

Round 2 - One-on-one 

(1 Question)

  • Q1. Whdn prioty -1 and 1 is implimented which will execute first

QA QC Engineer Interview Questions & Answers

user image Priyanka Satapathy

posted on 17 Dec 2024

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

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

Round 1 - Coding Test 

Diff abstract and interface
Oops concepts used in selenium
Got commands
Has table and has map
Load runner
Custom xpath

QA QC Engineer Interview Questions Asked at Other Companies

Q1. wha is your response ?, if material will purchase from any factor ... read more
Q2. What are the tests you have done
Q3. What Types of admixture generally used in concrete?
Q4. What do you check beam,columns and slab casting?
asked in Anabeeb
Q5. 1.What is the difference between shutdown and turnaround? 2.Expla ... read more
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Testing tools to be through with
  • Ans. 

    Some testing tools to be familiar with include Selenium, JIRA, and Postman.

    • Selenium for automated testing of web applications

    • JIRA for bug tracking and project management

    • Postman for API testing and automation

  • Answered by AI
  • Q2. Scenario based question

Skills evaluated in this interview

QA QC Engineer Interview Questions & Answers

user image manoj tiwari

posted on 10 Jun 2024

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

(2 Questions)

  • Q1. Please explain Bug life cycle
  • Ans. 

    Bug life cycle is the process of a bug from identification to resolution.

    • Bug is identified by tester

    • Bug is logged in bug tracking tool

    • Bug is assigned to developer

    • Developer fixes the bug

    • Bug is retested by tester

    • Bug is closed if fixed or reopened if not

  • Answered by AI
  • Q2. Difference between QA & QC
  • Ans. 

    QA focuses on preventing defects in the process, while QC focuses on identifying defects in the product.

    • QA is process oriented, focusing on preventing defects by establishing processes and standards.

    • QC is product oriented, focusing on identifying defects through testing and inspection.

    • QA involves activities like reviews, audits, and process improvements.

    • QC involves activities like testing, inspections, and quality cont...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - they will mainly focus on basic concepts

Skills evaluated in this interview

TCS interview questions for designations

 Senior QA QC Engineer

 (1)

 QA Engineer

 (43)

 Software QA Engineer

 (2)

 Senior QA Engineer

 (1)

 QA Automation Engineer

 (1)

 Testing & Commissioning Engineer

 (2)

 Senior Electrical Engineer

 (1)

 Qa Automation Testing Engineer

 (6)

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Java Interview Question
  • Q2. How to reverse a string
  • Ans. 

    To reverse a string, iterate through the string from end to start and append each character to a new string.

    • Iterate through the string from end to start

    • Append each character to a new string

    • Return the reversed string

  • Answered by AI
  • Q3. How to find a Duplicate from a string
  • Ans. 

    Use a hash set to find duplicates in a string array.

    • Create a hash set to store unique elements.

    • Iterate through the array and check if the element is already in the hash set.

    • If it is, then it is a duplicate.

    • Example: ['apple', 'banana', 'apple'] -> 'apple' is a duplicate.

  • Answered by AI
  • Q4. How to check an integer is palindrome or not
  • Ans. 

    To check if an integer is a palindrome, reverse the integer and compare it with the original integer.

    • Convert the integer to a string to easily reverse it

    • Reverse the string and compare it with the original string

    • If they are the same, the integer is a palindrome

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good in Java

Skills evaluated in this interview

Get interview-ready with Top TCS Interview Questions

QA QC Engineer Interview Questions & Answers

user image Mayank Patle

posted on 26 Aug 2023

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

(4 Questions)

  • Q1. What is pom directory
  • Ans. 

    POM directory is a folder in a Maven project that contains Page Object Model classes for organizing and managing web elements and actions.

    • POM directory helps in separating the page objects from test scripts for better organization and maintenance.

    • It contains classes representing web pages with locators and methods to interact with those elements.

    • Example: src/main/java/com/example/pages

  • Answered by AI
  • Q2. Opps concept in java
  • Ans. 

    Oops concept in Java refers to Object-Oriented Programming principles like 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 of a method to do different things based on the object it is acting upon.

    • Abstraction: Hiding the imp...

  • Answered by AI
  • Q3. Explain different types of waits in selenium
  • Ans. 

    Different types of waits in Selenium include implicit, explicit, and fluent waits.

    • Implicit wait: Waits for a specified 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 specified frequency of checking.

    • Example: WebDriverWait wait = new WebDriverWait(driver, 10);

  • Answered by AI
  • Q4. Explain you automation folder structure
  • Ans. 

    Automation folder structure should be organized and easy to navigate for efficient test automation.

    • Separate folders for test scripts, test data, test results, and configuration files

    • Subfolders for different test suites or modules

    • Naming conventions for files and folders to easily identify test cases

    • Utilize version control systems like Git for managing code changes

    • Include a README file with instructions on how to run tes

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Aug 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 - HR 

(2 Questions)

Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - i feel i All jobseekers After joining the company then after put your resignations in current company . if any wrong sorry All.

Skills evaluated in this interview

I applied via Referral and was interviewed before Mar 2021. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Testing basic questions
  • Q2. API Testing questions
  • Q3. SQL queries testing questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with answers. Be confident with clear communication

Interview questions from similar companies

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

(4 Questions)

  • Q1. What is BVA Testing?
  • Ans. 

    BVA Testing stands for Boundary Value Analysis Testing, a software testing technique to test the boundary values of input ranges.

    • BVA Testing is used to identify errors at the boundaries of input ranges.

    • It involves testing the minimum and maximum values, as well as just inside and just outside the boundaries.

    • For example, if a system accepts values from 1 to 10, BVA Testing would test values 0, 1, 10, and 11.

  • Answered by AI
  • Q2. High severity low priority
  • Q3. Test technics
  • Q4. Test methodologies
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What are the drawback for selenium
  • Ans. 

    Drawbacks of Selenium include limited support for non-web applications and challenges in handling dynamic web elements.

    • Limited support for non-web applications, such as desktop or mobile apps

    • Challenges in handling dynamic web elements, leading to flakiness in tests

    • Steep learning curve for beginners

    • Requires programming knowledge to create and maintain test scripts

    • Slower execution speed compared to other automation tools

  • Answered by AI
  • Q2. Multiple occurrence in a string
  • Ans. 

    Count the number of occurrences of a specific substring in a given string.

    • Use a loop to iterate through the string and check for the occurrence of the substring.

    • Use the indexOf method to find the position of the substring in the string.

    • Increment a counter each time the substring is found.

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a dedicated QA QC Engineer with 5 years of experience in ensuring product quality and compliance with industry standards.

    • Experienced in conducting quality control inspections and audits

    • Skilled in developing and implementing quality assurance processes

    • Proficient in using testing tools and techniques to identify defects

    • Strong attention to detail and problem-solving skills

    • Excellent communication and teamwork abilitie

  • Answered by AI
  • Q2. What is selenium
  • Ans. 

    Selenium is a popular open-source automation testing tool used for web application testing.

    • Selenium is used for automating web browsers.

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

    • Selenium WebDriver is the most commonly used component for writing automation scripts.

    • Selenium Grid is used for parallel testing across different browsers and environments.

  • Answered by AI

Skills evaluated in this interview

TCS Interview FAQs

How many rounds are there in TCS QA QC Engineer interview?
TCS interview process usually has 1-2 rounds. The most common rounds in the TCS interview process are Technical, HR and Resume Shortlist.
What are the top questions asked in TCS QA QC Engineer interview?

Some of the top questions asked at the TCS QA QC Engineer interview -

  1. By using driver.findElements().find All elements in the application . using loo...read more
  2. Whdn prioty -1 and 1 is implimented which will execute fi...read more
  3. How to check an integer is palindrome or ...read more

Tell us how to improve this page.

TCS QA QC Engineer Interview Process

based on 9 interviews

1 Interview rounds

  • Technical Round
View more

QA QC Engineer Interview Questions from Similar Companies

View all
TCS QA QC Engineer Salary
based on 47 salaries
₹2.1 L/yr - ₹10.4 L/yr
24% more than the average QA QC Engineer Salary in India
View more details

TCS QA QC Engineer Reviews and Ratings

based on 15 reviews

4.5/5

Rating in categories

4.3

Skill development

4.3

Work-life balance

3.8

Salary

4.6

Job security

4.4

Company culture

4.2

Promotions

4.4

Work satisfaction

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

₹1 L/yr - ₹9 L/yr

IT Analyst
67.6k salaries
unlock blur

₹5.1 L/yr - ₹16 L/yr

AST Consultant
51.3k salaries
unlock blur

₹8 L/yr - ₹25 L/yr

Assistant System Engineer
29.9k salaries
unlock blur

₹2.2 L/yr - ₹5.6 L/yr

Associate Consultant
28.9k salaries
unlock blur

₹9 L/yr - ₹32 L/yr

Explore more salaries
Compare TCS with

Amazon

4.1
Compare

Wipro

3.7
Compare

Infosys

3.7
Compare

Accenture

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