Upload Button Icon Add office photos

T-Systems ICT India

Compare button icon Compare button icon Compare

Filter interviews by

T-Systems ICT India QA Engineer Interview Questions, Process, and Tips

Updated 21 Feb 2025

T-Systems ICT India QA Engineer Interview Experiences

1 interview found

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 21 Feb 2025

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

I was interviewed in Jan 2025.

Round 1 - Technical 

(7 Questions)

  • Q1. Explain the concept of Page Object Model in detail
  • Ans. 

    Page Object Model is a design pattern used in test automation to create an object repository for web UI elements.

    • Page Object Model helps in separating the test scripts from the actual web elements, making the code more maintainable and reusable.

    • Each web page is represented as a separate class, with locators and methods to interact with the elements on that page.

    • Page classes contain methods to perform actions on the ele...

  • Answered by AI
  • Q2. Explain all status code
  • Ans. 

    Status codes are standardized codes used by servers to indicate the outcome of a HTTP request.

    • 1. 1xx - Informational: Request received, continuing process

    • 2. 2xx - Success: The action was successfully received, understood, and accepted

    • 3. 3xx - Redirection: Further action must be taken in order to complete the request

    • 4. 4xx - Client Error: The request contains bad syntax or cannot be fulfilled

    • 5. 5xx - Server Error: The s

  • Answered by AI
  • Q3. What are the different types of wait in Selenium?
  • Ans. 

    Types of wait 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 be met before proceeding further in the code.

    • Fluent Wait: Waits for a condition to be met with a defined polling frequency and maximum timeout.

    • Example: driver.manage().timeouts().implicitlyWait(10, TimeU

  • Answered by AI
  • Q4. How do you handle alerts in Selenium, and what is the purpose of the alert.dismiss() method?
  • Ans. 

    Handling alerts in Selenium using alert.dismiss() method

    • Use driver.switchTo().alert() to switch to the alert

    • Use alert.dismiss() to dismiss the alert without performing any action

    • Purpose of alert.dismiss() method is to close the alert without accepting it

  • Answered by AI
  • Q5. What are the different types of @Annotations in TestNG?
  • Ans. 

    TestNG provides various built-in annotations to control the flow of test methods.

    • Some of the common @Annotations in TestNG are @Test, @BeforeSuite, @AfterSuite, @BeforeTest, @AfterTest, @BeforeClass, @AfterClass, @BeforeMethod, @AfterMethod, @DataProvider, @Parameters, @Listeners, @Factory, @BeforeGroups, @AfterGroups, @BeforeSuite, @AfterSuite, @BeforeTest, @AfterTest.

    • These annotations help in setting up preconditions...

  • Answered by AI
  • Q6. What is the difference between XPath and CSS selectors?
  • Ans. 

    XPath is more powerful and flexible but complex, while CSS selectors are simpler and faster.

    • XPath can traverse both upwards and downwards in the DOM tree, while CSS selectors can only traverse downwards.

    • XPath can select elements based on their attributes, text content, and position in the DOM, while CSS selectors are limited to selecting elements based on their attributes.

    • XPath expressions are longer and more complex t...

  • Answered by AI
  • Q7. What exceptions have you encountered while working on web-based applications?
  • Ans. 

    I have encountered exceptions like ElementNotVisibleException, StaleElementReferenceException, TimeoutException, etc.

    • ElementNotVisibleException occurs when an element is present in the DOM but not visible on the web page.

    • StaleElementReferenceException occurs when an element is no longer attached to the DOM.

    • TimeoutException occurs when a specific operation does not complete within a specified timeout.

    • NoSuchElementExcept...

  • Answered by AI

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. What is Regression testing.
  • Q2. Difference between list and tuple
  • Q3. Program to check if the no. is prime
Round 2 - Technical 

(2 Questions)

  • Q1. Program to find pallindrome.
  • Q2. How to find element using css selector.
Round 3 - Case Study 

Scenario based questions

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

(5 Questions)

  • Q1. API testing related questions were asked
  • Q2. What is api testing
  • Q3. How do you log bugs
  • Q4. What is agilemethodology
  • Q5. What is selenium framework
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Write a program to reverse a string
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Easy very simple questions sked in test

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Explain SDLC
  • Ans. 

    SDLC stands for Software Development Life Cycle, a process used to design, develop, and test software.

    • SDLC is a systematic process for building software applications.

    • It includes phases like planning, analysis, design, implementation, testing, and maintenance.

    • Each phase has specific goals and deliverables to ensure the quality and success of the software.

    • Examples of SDLC models include Waterfall, Agile, and DevOps.

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

Hackerank platform with multiple questions.

Round 2 - Technical 

(1 Question)

  • Q1. Oops, Java, Java collection, String

QA Engineer Interview Questions & Answers

Wipro user image Vinay Devendra

posted on 10 Oct 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. WAP to run same test case 100 times
  • Ans. 

    Write a program to run the same test case 100 times

    • Use a loop to iterate 100 times

    • Call the test case function inside the loop

    • Track the results of each iteration if needed

  • Answered by AI
  • Q2. WAP to get duplicate char count
  • Ans. 

    A program to count the number of duplicate characters in an array of strings.

    • Iterate through each string in the array

    • For each string, iterate through each character and count the occurrences

    • Store the count of each character in a map or dictionary

    • Return the characters with count greater than 1

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

(2 Questions)

  • Q1. Questions on object oriented programming concepts in java
  • Q2. How to handle multiple windowns in selenium
  • Ans. 

    Handling multiple windows in Selenium involves switching between windows and performing actions on each window.

    • Use getWindowHandles() to get all window handles

    • Switch to a specific window using switchTo().window(handle)

    • Perform actions on the window

    • Switch back to the original window if needed

  • Answered by AI

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Bubble sort algo, String manipulation

Round 2 - Technical 

(2 Questions)

  • Q1. API testing using restAssured
  • Q2. STLC bug life cuycle

Interview Preparation Tips

Interview preparation tips for other job seekers - preapare interview on CV
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response
Round 1 - Coding Test 

Good questions on java coding

Round 2 - HR 

(1 Question)

  • Q1. Salary expectation

T-Systems ICT India Interview FAQs

How many rounds are there in T-Systems ICT India QA Engineer interview?
T-Systems ICT India interview process usually has 1 rounds. The most common rounds in the T-Systems ICT India interview process are Technical.
What are the top questions asked in T-Systems ICT India QA Engineer interview?

Some of the top questions asked at the T-Systems ICT India QA Engineer interview -

  1. Explain the concept of Page Object Model in det...read more
  2. Explain all status c...read more
  3. What are the different types of wait in Seleni...read more

Tell us how to improve this page.

T-Systems ICT India QA Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

QA Engineer Interview Questions from Similar Companies

TCS QA Engineer Interview Questions
3.7
 • 43 Interviews
IBM QA Engineer Interview Questions
4.0
 • 12 Interviews
View all
T-Systems ICT India QA Engineer Salary
based on 15 salaries
₹3.5 L/yr - ₹4.8 L/yr
26% less than the average QA Engineer Salary in India
View more details
Senior Consultant
1.1k salaries
unlock blur

₹10 L/yr - ₹42 L/yr

Consultant
1.1k salaries
unlock blur

₹8 L/yr - ₹30.8 L/yr

Associate Consultant
247 salaries
unlock blur

₹3.5 L/yr - ₹8.6 L/yr

SAP Basis Consultant
179 salaries
unlock blur

₹4 L/yr - ₹20 L/yr

Softwaretest Engineer
116 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Explore more salaries
Compare T-Systems ICT India with

IBM

4.0
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Tech Mahindra

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