Premium 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 Work with us arrow

Compare button icon Compare button icon Compare

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

What people are saying about Coforge

View All
benevolentpistachio
Verified Icon
1d (edited)
works at
Allianz Technology
BA Job Offers: Need Your Wisdom!
Hey everyone, I'm super lucky to have landed three offers in the Insurance sector but now I'm stuck on which to choose! I'm a Business Analyst currently. Here are the offers: 1. NTT Data: Business Analyst (highest pay) 2. Cognizant Consulting: Consulting Manager 3. Coforge: Business Analyst Which one should I pick? Any insights would be super helpful!
Got a question about Coforge?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Monster and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How to do work?

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing to share special

QA Lead Interview Questions Asked at Other Companies

Q1. 1. Explain Bid bond guarantee, Advance payment guarantee, Perform ... read more
Q2. OOPS, Interface, Why to use interface, how to implement run time ... read more
Q3. Saucelab or browserstack which one you use, what the purpose of u ... read more
asked in LoveLocal
Q4. What approach did you follow to ensure that your testing tasks we ... read more
asked in LoveLocal
Q5. How did you ensure the completion of integration testing, what wa ... read more

Interview Questionnaire 

5 Questions

  • Q1. Core Java questions related to multithreading, exception handling, collections.
  • Q2. Also, selenium related question like types of locators. And some basic question.
  • Q3. What is QTP, difference between findelememt() and findelements().
  • Ans. 

    QTP is a test automation tool. findelement() is used to find a single element, findelements() is used to find multiple elements.

    • QTP is short for QuickTest Professional, a test automation tool used for functional and regression testing.

    • findelement() is a method in QTP used to find a single element on a web page based on the specified locator.

    • findelements() is a method in QTP used to find multiple elements on a web page ...

  • Answered by AI
  • Q4. Use of GitHub, hashmap working.
  • Ans. 

    GitHub is a version control system used for collaborative software development. Hashmap is a data structure that stores key-value pairs.

    • GitHub is used for version control, allowing multiple developers to work on a project simultaneously.

    • Hashmap is a data structure that provides fast access to values based on their keys.

    • GitHub can be used to store and manage code repositories, track changes, and collaborate with other d...

  • Answered by AI
  • Q5. Personal discussion, related to joining date, and salary expectation.

Skills evaluated in this interview

I appeared for an interview in Mar 2020.

Interview Questionnaire 

8 Questions

  • Q1. What are different types of triggers, workflows? More on workflow actions and time based activities
  • Q2. What is owd and data types?
  • Ans. 

    OWD stands for Object Work Directory. Data types refer to the different types of data that can be stored in a program.

    • OWD is the directory where the current object is stored during runtime.

    • Data types include integers, strings, booleans, and floats.

    • Each data type has its own set of operations that can be performed on it.

    • Examples of data types: int age = 25; string name = 'John'; bool isTrue = true; float price = 9.99;

  • Answered by AI
  • Q3. Various types of Reports and dashboards
  • Ans. 

    Reports and dashboards are tools used to visualize and analyze data.

    • Reports provide detailed information on specific data points or events.

    • Dashboards provide an overview of key performance indicators (KPIs) and trends.

    • Types of reports include operational, analytical, and ad-hoc reports.

    • Types of dashboards include strategic, operational, and analytical dashboards.

    • Examples of reporting tools include Crystal Reports, SSRS...

  • Answered by AI
  • Q4. Sales flow stages and opportunity stages
  • Ans. 

    Sales flow stages and opportunity stages

    • Sales flow stages refer to the steps involved in the sales process, from lead generation to closing the deal

    • Opportunity stages refer to the different stages in the sales pipeline, from identifying a potential opportunity to closing the deal

    • Common sales flow stages include lead generation, qualification, needs analysis, proposal, negotiation, and closing

    • Common opportunity stages i...

  • Answered by AI
  • Q5. Types of data security
  • Ans. 

    Types of data security include encryption, access control, backup and recovery, and physical security.

    • Encryption: converting data into a code to prevent unauthorized access

    • Access control: limiting access to data based on user roles and permissions

    • Backup and recovery: creating copies of data to prevent loss in case of a security breach or system failure

    • Physical security: protecting hardware and storage devices from thef...

  • Answered by AI
  • Q6. Custom and Console apps and what is default access available on custom object
  • Q7. Worked on data loader and workbench along with soql queries
  • Q8. Standard profiles on SFDC and what is web to lead in sfdc and how can you do it

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview isn't difficult just that questions are of more towards technical side instead of testing questions related to Salesforce as part of admin...would be better if we are prepared for those.

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. About sql and manual testing concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and sure

I applied via Naukri.com and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Difference between abstract and interface
  • Ans. 

    Abstract class is a blueprint of a class while interface is a contract that a class agrees to follow.

    • Abstract class can have both abstract and non-abstract methods while interface can only have abstract methods.

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

    • Abstract class can have constructors while interface cannot.

    • Abstract class can have instance variables while interface canno...

  • Answered by AI
  • Q2. Give some practical examples of polymorphism
  • Ans. 

    Polymorphism is the ability of an object to take on many forms. It allows objects of different classes to be treated as if they were of the same class.

    • Method overloading is an example of compile-time polymorphism

    • Method overriding is an example of runtime polymorphism

    • A parent class reference variable can refer to a child class object

    • An interface reference variable can refer to a class object that implements the interfac...

  • Answered by AI
  • Q3. Method overloading and method overriding
  • Q4. Iframes

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview process was smooth and long. Be patient to get your offer letter.

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Very basic selenium
  • Q2. Basic java programming
  • Q3. Basic array

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was easy best prepared if you are good with java basics
Are these interview questions helpful?

Interview Questionnaire 

2 Questions

  • Q1. Whatever the question is, that doesn't matter!
  • Q2. See.. You should definitely have skills.. Else, no way to get place in any organization. Next thing is, you should never lose your self respect for any kind of job and salary.. Without yourselves, your lif...
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Fair and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Java programming
  • Q2. Salesforce testing
Round 2 - Coding Test 

Same coding and managerial round

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Fibonacci seriers
  • Q2. Oops concepts java
Round 2 - Technical 

(2 Questions)

  • Q1. Find min and max number in an array
  • Ans. 

    Find min and max number in an array of strings

    • Convert array elements to integers for comparison

    • Use built-in functions like Math.min() and Math.max()

    • Handle edge cases like empty array or non-numeric elements

  • Answered by AI
  • Q2. Test scenario for elevator
  • Ans. 

    Testing an elevator involves various scenarios to ensure safety, functionality, and user experience.

    • Check elevator operation with different weight loads (e.g., 0%, 50%, 100% capacity).

    • Test emergency features like the alarm button and emergency stop.

    • Verify door operation: open/close timing and obstruction detection.

    • Simulate power failure and check if the elevator returns to the nearest floor.

    • Test user interface responsi...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Tell me about your self

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 Java, API Testing, Appium, Automation Testing and C#.
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.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Moderate 100%
View more
Join Coforge Engage with the emerging!
Coforge QA Lead Salary
based on 58 salaries
₹15 L/yr - ₹24.4 L/yr
At par with the average QA Lead Salary in India
View more details

Coforge QA Lead Reviews and Ratings

based on 3 reviews

3.1/5

Rating in categories

3.1

Skill development

3.1

Work-life balance

3.1

Salary

3.1

Job security

3.1

Company culture

3.1

Promotions

3.1

Work satisfaction

Explore 3 Reviews and Ratings
Senior Software Engineer
4.9k salaries
unlock blur

₹6.1 L/yr - ₹22.8 L/yr

Technical Analyst
2.8k salaries
unlock blur

₹9.7 L/yr - ₹38.4 L/yr

Software Engineer
2.2k salaries
unlock blur

₹3.5 L/yr - ₹8 L/yr

Senior Test Engineer
1.8k salaries
unlock blur

₹5.6 L/yr - ₹17.1 L/yr

Technology Specialist
1.3k salaries
unlock blur

₹21.9 L/yr - ₹39 L/yr

Explore more salaries
Compare Coforge with

Capgemini

3.7
Compare

Cognizant

3.7
Compare

Accenture

3.8
Compare

Infosys

3.6
Compare
write
Share an Interview