Upload Button Icon Add office photos
Engaged Employer

i

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

IBM Verified Tick

Compare button icon Compare button icon Compare
4.0

based on 21.6k Reviews

Filter interviews by

IBM Senior QA Lead Interview Questions and Answers

Updated 21 May 2024

IBM Senior QA Lead Interview Experiences

1 interview found

Senior QA Lead Interview Questions & Answers

user image Ashish Baweja

posted on 21 May 2024

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

I applied via Referral and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Simple coding test plus puzzles

Round 2 - Technical 

(2 Questions)

  • Q1. Test automation generic questions
  • Q2. What new skill you want to acquire?

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain project framework
  • Ans. 

    Project framework is a structure that provides guidelines, best practices, and tools for managing a project.

    • Project framework defines project scope, objectives, deliverables, timelines, and resources.

    • It includes processes, methodologies, and tools used to plan, execute, monitor, and control the project.

    • Examples of project frameworks include Agile, Waterfall, Scrum, and Kanban.

  • Answered by AI
  • Q2. Experience on banking domain
  • Ans. 

    Extensive experience in banking domain with expertise in testing various banking applications.

    • Worked on testing core banking systems such as Finacle and Flexcube

    • Experience in testing online banking platforms for retail and corporate customers

    • Knowledge of regulatory compliance requirements in banking sector

    • Familiarity with payment processing systems and security protocols

    • Collaborated with business analysts and developer

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview experience was not so good. Though I answered all the asked questions but still did not selected as I was not having banking domain experience which is mentioned in my resume

Skills evaluated in this interview

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

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

Round 1 - Technical 

(1 Question)

  • Q1. 1. What are API estimation technique ? 2. Exception writing in the selenium 3.Read data from excel program 4. Http status code
  • Ans. 

    API estimation techniques involve breaking down the API testing tasks into smaller components and estimating the effort required for each.

    • Break down API testing tasks into smaller components

    • Estimate effort required for each component

    • Consider factors like complexity, dependencies, and resources

    • Use techniques like expert judgment, historical data, and analogy-based estimation

    • Example: Function Point Analysis, Three-Point

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Testng,maven,parallel execution
Round 2 - HR 

(1 Question)

  • Q1. Experience, and salaray negotiation
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
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Hackerank platform with multiple questions.

Round 2 - Technical 

(1 Question)

  • Q1. Oops, Java, Java collection, String

QA Test Lead Interview Questions & Answers

Cognizant user image Md Aklakh Ahmad

posted on 13 Dec 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

Write java program to reverse each word

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
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain bdd cucumber framework
  • Ans. 

    BDD Cucumber framework is a testing tool that allows for behavior-driven development using plain text descriptions.

    • Uses Gherkin syntax to write test scenarios in plain English

    • Helps in collaboration between technical and non-technical team members

    • Supports automation testing by mapping plain text descriptions to code implementations

  • Answered by AI
  • Q2. Oops concepts in java
  • Ans. 

    Oops concepts in Java refer to Object-Oriented Programming principles like Inheritance, Polymorphism, Encapsulation, and Abstraction.

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

    • Polymorphism: Ability of objects to take on multiple forms.

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

    • Abstraction: Hiding the implementation details and showing only

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Technical 

(2 Questions)

  • Q1. Abstract class vs interface
  • Ans. 

    Abstract class is a class that can have both abstract and non-abstract methods, while interface is a contract that defines methods that a class must implement.

    • Abstract class can have constructors, fields, and methods, while interface can only have abstract methods.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Abstract classes are used when some common functionality needs to be s...

  • Answered by AI
  • Q2. Finalize method
Round 2 - Technical 

(2 Questions)

  • Q1. 2nd largest number from a array
  • Ans. 

    Find the 2nd largest number in an array of strings.

    • Convert the strings to numbers before comparing.

    • Sort the array in descending order and return the second element.

    • Handle edge cases like empty array or array with only one element.

  • Answered by AI
  • Q2. List vs set linked list
  • Ans. 

    List is a collection of elements with duplicates allowed, while set is a collection of unique elements. Linked list is a data structure where each element points to the next element.

    • List allows duplicates, set does not

    • Linked list has elements connected by pointers

    • List can be implemented using arrays or linked lists

    • Set is implemented using hash tables or trees

  • Answered by AI
Round 3 - Tech  Manegerial 

(2 Questions)

  • Q1. Test life cycle
  • Q2. Why do u want to switch

Skills evaluated in this interview

IBM Interview FAQs

How many rounds are there in IBM Senior QA Lead interview?
IBM interview process usually has 2 rounds. The most common rounds in the IBM interview process are Coding Test and Technical.

Tell us how to improve this page.

IBM Senior QA Lead Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
View all
IBM Senior QA Lead Salary
based on 22 salaries
₹7 L/yr - ₹24.5 L/yr
17% less than the average Senior QA Lead Salary in India
View more details
Application Developer
11.6k salaries
unlock blur

₹5.5 L/yr - ₹23.8 L/yr

Software Engineer
5.6k salaries
unlock blur

₹5.3 L/yr - ₹22.3 L/yr

Advisory System Analyst
5.2k salaries
unlock blur

₹9.3 L/yr - ₹27.5 L/yr

Senior Software Engineer
4.8k salaries
unlock blur

₹8 L/yr - ₹30 L/yr

Senior Systems Engineer
4.6k salaries
unlock blur

₹5.6 L/yr - ₹19.9 L/yr

Explore more salaries
Compare IBM with

Oracle

3.7
Compare

TCS

3.7
Compare

Cognizant

3.8
Compare

Accenture

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