Upload Button Icon Add office photos
Engaged Employer

i

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

Coforge Verified Tick

Compare button icon Compare button icon Compare
3.4

based on 4.5k Reviews

Filter interviews by

Coforge QA Lead Interview Questions and Answers

Updated 5 Nov 2024

Coforge QA Lead Interview Experiences

1 interview found

QA Lead Interview Questions & Answers

user image Abhijeet Chavan

posted on 5 Nov 2024

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. What are different types of waits in selenium? Write code and explain its uses.
  • Ans. 

    Types of waits 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.

    • Example: driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);

  • Answered by AI
  • Q2. What is the different between findElement and findElements ? What exceptions will both throw in case of element not found .
  • Ans. 

    findElement is used to find a single element on a web page, while findElements is used to find multiple elements.

    • findElement returns a single WebElement, while findElements returns a list of WebElements.

    • findElement will throw NoSuchElementException if the element is not found, while findElements will return an empty list if no elements are found.

    • Example: WebElement element = driver.findElement(By.id("exampleId")); List...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

(2 Questions)

  • Q1. Merge two list in python.
  • Ans. 

    Merge two lists in Python using the extend() method.

    • Create two lists, list1 and list2.

    • Use the extend() method to merge list2 into list1.

    • Example: list1 = ['a', 'b', 'c'], list2 = ['d', 'e', 'f']

    • After merging, list1 will be ['a', 'b', 'c', 'd', 'e', 'f']

  • Answered by AI
  • Q2. How to resolve merge conflicts.
  • Ans. 

    Merge conflicts can be resolved by pulling the latest changes, resolving conflicts locally, and then pushing the changes.

    • Pull the latest changes from the remote repository

    • Resolve conflicts locally by editing the conflicting files

    • Add the resolved files to the staging area

    • Commit the changes with a message explaining the resolution

    • Push the changes to the remote repository

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. About test methodology
  • Q2. Asked to write function for excel reading function
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Oops concept and java related questions
  • Q2. Automation scripting knowledge related questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude test and Testing questions related to Test estimations

Round 2 - Technical 

(5 Questions)

  • Q1. Test Plan - did you prepared
  • Q2. Test estimation techniques
  • Ans. 

    Test estimation techniques involve various methods to estimate the effort, time, and resources required for testing.

    • Expert judgment: Relying on the expertise and experience of the QA team to estimate the effort.

    • Analogous estimation: Using historical data from similar projects to estimate the testing effort.

    • Parametric estimation: Using mathematical models and formulas to estimate based on project parameters.

    • Three-point ...

  • Answered by AI
  • Q3. Agile methodology
  • Q4. API protocols, methods, status
  • Q5. SQL queries on joins, subquery - 3rd highest salary, display employee name based on designation
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. What is CI Cd pipeline and string manipulation programs
  • Ans. 

    CI/CD pipeline is a set of automated processes for building, testing, and deploying software. String manipulation programs involve manipulating text data.

    • CI/CD pipeline automates the process of integrating code changes, testing them, and deploying them to production.

    • String manipulation programs involve tasks like searching, replacing, and modifying text data.

    • Examples of string manipulation programs include finding the ...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. How will you manage team and test pyramid
Round 3 - HR 

(1 Question)

  • Q1. How soon you can join us

Skills evaluated in this interview

QA Lead Interview Questions & Answers

DXC Technology user image Bijaya Kumar Sahoo

posted on 16 Oct 2024

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

I applied via Naukri.com and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. About framework
  • Q2. About java programing

I applied via Approached by Company and was interviewed in Sep 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. QA Day today activity, situational questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Have good technical and communication skill

I applied via LinkedIn and was interviewed in Aug 2022. There were 5 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 

45 min of technical coding test touching on basics to advanced.

Round 3 - Coding Test 

Mostly asked advanced algorithm solving and programming

Round 4 - Technical 

(1 Question)

  • Q1. Technical architect round which was mostly into depth knowledge of subject
Round 5 - Technical 

(1 Question)

  • Q1. From process to problem solving skills from client end

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up on the topics where you had worked in your career and go through Job description and try to prepare for the similar technical skills.
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 Mar 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Programming questions on java
  • Q2. Prime number program
  • Ans. 

    A prime number program checks if a given number is only divisible by 1 and itself.

    • Check if the number is greater than 1

    • Iterate from 2 to the square root of the number and check for divisibility

    • If no divisors found, the number is prime

  • Answered by AI
  • Q3. String related program

Skills evaluated in this interview

Coforge Interview FAQs

How many rounds are there in Coforge QA Lead interview?
Coforge interview process usually has 1 rounds. The most common rounds in the Coforge interview process are Technical.
How to prepare for Coforge QA Lead 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 Coforge. The most common topics and skills that interviewers at Coforge expect are API Testing, Appium, Java and Selenium.
What are the top questions asked in Coforge QA Lead interview?

Some of the top questions asked at the Coforge QA Lead interview -

  1. What is the different between findElement and findElements ? What exceptions wi...read more
  2. What are different types of waits in selenium? Write code and explain its us...read more

Tell us how to improve this page.

QA Lead Interview Questions from Similar Companies

Wipro QA Lead Interview Questions
3.7
 • 2 Interviews
TCS QA Lead Interview Questions
3.7
 • 1 Interview
View all
Coforge QA Lead Salary
based on 47 salaries
₹9.2 L/yr - ₹26.5 L/yr
13% more than the average QA Lead Salary in India
View more details

Coforge QA Lead Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

4.0

Salary

5.0

Job security

4.0

Company culture

3.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
4.8k salaries
unlock blur

₹6.4 L/yr - ₹25.2 L/yr

Technical Analyst
2.5k salaries
unlock blur

₹9.5 L/yr - ₹38.4 L/yr

Software Engineer
2k salaries
unlock blur

₹2.2 L/yr - ₹9.5 L/yr

Senior Test Engineer
1.8k salaries
unlock blur

₹4.7 L/yr - ₹19.3 L/yr

Technology Specialist
1.2k salaries
unlock blur

₹11.8 L/yr - ₹42 L/yr

Explore more salaries
Compare Coforge with

Capgemini

3.8
Compare

Cognizant

3.8
Compare

Accenture

3.9
Compare

Infosys

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