Upload Button Icon Add office photos

Filter interviews by

Accenture QA Test Lead Interview Questions and Answers

Updated 21 Jul 2024

Accenture QA Test Lead Interview Experiences

1 interview found

QA Test Lead Interview Questions & Answers

user image Mouparna Ghosh

posted on 21 Jul 2024

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

(3 Questions)

  • Q1. Type of selectors in selenium
  • Ans. 

    Selectors in Selenium are used to identify web elements on a webpage for automation testing.

    • Selectors include ID, class name, name, tag name, link text, partial link text, CSS selector, and XPath.

    • ID selector is the fastest and most reliable, while XPath is the most powerful but slower.

    • CSS selectors are commonly used due to their flexibility and readability.

    • Example: driver.findElement(By.id("elementID"));

  • Answered by AI
  • Q2. Wait statements in selenium
  • Ans. 

    Wait statements in Selenium are used to pause the execution of the test script for a specified amount of time.

    • Wait statements are used to handle synchronization issues in test automation scripts.

    • There are two types of wait statements in Selenium: Implicit Wait and Explicit Wait.

    • Implicit Wait sets a default waiting time for the elements to be available before throwing an exception.

    • Explicit Wait allows the test script to...

  • Answered by AI
  • Q3. Program to write fibonacci series
  • Ans. 

    A program to write the Fibonacci series using iterative or recursive methods.

    • Use a loop to generate Fibonacci series iteratively

    • Use recursion to generate Fibonacci series recursively

    • Start with 0 and 1 as the first two numbers in the series

    • Add the previous two numbers to get the next number in the series

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Expectation of salary

Skills evaluated in this interview

Interview questions from similar companies

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
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is collection frame work
  • Ans. 

    Collection framework is a unified architecture for representing and manipulating collections of objects.

    • Provides interfaces (List, Set, Map) and classes (ArrayList, HashSet, HashMap) for storing and manipulating groups of objects

    • Offers algorithms for searching, sorting, and manipulating collections

    • Promotes code reusability and efficiency in handling collections

  • Answered by AI
  • Q2. Write a program to count no of characters in the given string
  • Ans. 

    A program to count the number of characters in a given string.

    • Iterate through each character in the string and increment a counter for each character encountered.

    • Use a hashmap to store the count of each character for efficient counting.

    • Handle edge cases such as empty string or null input.

  • Answered by AI

Skills evaluated in this interview

Round 1 - Technical 

(2 Questions)

  • Q1. What is product backlog and sprint backlog
  • Ans. 

    Product backlog is a prioritized list of features to be developed. Sprint backlog is a subset of product backlog for a specific sprint.

    • Product backlog is a dynamic document that evolves with the product development cycle

    • It contains a list of features, enhancements, bug fixes, and other work items

    • The items in the backlog are prioritized based on business value, risk, and other factors

    • Sprint backlog is a subset of produc...

  • Answered by AI
  • Q2. What is velocity and zero sprint
  • Ans. 

    Velocity is the amount of work a team can complete in a sprint. Zero sprint is a sprint with no completed work.

    • Velocity is a measure of a team's productivity in completing work during a sprint

    • It is calculated by adding up the story points or tasks completed in a sprint

    • Zero sprint is a sprint where no work is completed due to unforeseen circumstances or issues

    • It is important to track velocity to help plan future sprints

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare with all manual testing concepts as well automation.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Referral and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(9 Questions)

  • Q1. Match 14 characters before @ , given an url
  • Q2. Match Atleast one capital, once small case, 1 digit and 1 special character using regex?
  • Q3. Given a string ="This is my interview for QA engineer"; write code to give an output of each word with vowel count?
  • Q4. Given a 2X2 Matrix, find the maximum diagonal sum?
  • Q5. How do you find the selected option text from dropdown in selenium?
  • Q6. Given a dropdown contains options with duplicates. Find those duplicates along with its occurrence/frequency?
  • Q7. How do you resolve merge conflicts in git?
  • Q8. How to bring specific commit changes to your branch?
  • Q9. How to switch to frame and come out of it in selenium?

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep doing any activity(remove/add/update resume, change skills etc..) in naukri/linkedin so that i catches recruiters attention
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Write java program to print sum of digits from a given string eg: "abcd23"
  • Ans. 

    Java program to print sum of digits from a given string

    • Iterate through each character in the string

    • Check if the character is a digit using Character.isDigit() method

    • Convert the digit character to integer using Character.getNumericValue() method

    • Sum up all the digits found in the string

  • Answered by AI
  • Q2. Explain oops concepts used in your framework with example?
  • Ans. 

    OOPs concepts used in the framework include inheritance, polymorphism, encapsulation, and abstraction.

    • Inheritance is used to create a parent-child relationship between classes. For example, a base class 'Page' can be inherited by 'HomePage' and 'LoginPage' classes.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass. For instance, a 'click' method can be implemented different...

  • Answered by AI
  • Q3. Explain polymorphism
  • Ans. 

    Polymorphism is the ability of a single function or method to operate on different types of data.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

    • Example of compile-time polymorphism: function overloading in Java.

    • Example of runtime polymorphism: method overriding in Java

  • Answered by AI
  • Q4. Java program to print the sum of elements in string array eg: String[] arr = {"1","2","3"}
  • Ans. 

    Java program to print the sum of elements in a string array.

    • Convert each element in the string array to an integer using Integer.parseInt()

    • Sum up all the integers to get the total sum

  • Answered by AI

Skills evaluated in this interview

QA Lead Interview Questions & Answers

Wipro user image ritu Aparna

posted on 14 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(4 Questions)

  • Q1. Java string question, Define Automation framework, Explain jenkins usage, what is the difference ebtween Waterfall and Agile modal.
  • Q2. Explain the usage of joins in SQL.
  • Ans. 

    Joins in SQL are used to combine rows from two or more tables based on a related column between them.

    • Joins are used to retrieve data from multiple tables based on a related column.

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column;

  • Answered by AI
  • Q3. Explain the testNG usage
  • Ans. 

    TestNG is a testing framework for Java that supports various testing levels and annotations.

    • TestNG allows for easy configuration of test suites, test cases, and test methods.

    • It supports parallel execution of tests, data-driven testing, and parameterization.

    • TestNG provides detailed test reports and allows for grouping of test methods.

    • Annotations like @Test, @BeforeSuite, @AfterSuite, etc., help in defining test methods

  • Answered by AI
  • Q4. Explain POM concept in Automation framework.
  • Ans. 

    POM is a design pattern in automation testing where web pages are represented as classes, and the interactions are defined as methods.

    • POM helps in creating a clear separation between test scripts and page objects.

    • It improves test maintenance and readability.

    • Page classes contain locators and methods to interact with the elements on the page.

    • Test scripts call these methods to perform actions on the page.

    • Example: LoginPag...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Explain your day to day activity as a QA lead.
  • Ans. 

    As a QA lead, my day to day activities involve overseeing testing processes, coordinating with team members, creating test plans, and ensuring quality standards are met.

    • Coordinate with team members to assign testing tasks and ensure deadlines are met

    • Create and review test plans, test cases, and test scripts

    • Conduct regular meetings with the team to discuss progress and address any issues

    • Collaborate with developers and o...

  • Answered by AI

Skills evaluated in this interview

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
  • Ans. 

    API testing is a type of software testing that involves testing APIs directly to ensure they meet functionality, reliability, performance, and security requirements.

    • API testing involves testing the functionality, reliability, performance, and security of APIs.

    • It focuses on verifying that the API meets its specifications and works as expected.

    • API testing can be done manually or using automated tools like Postman or Soap...

  • Answered by AI
  • Q3. How do you log bugs
  • Ans. 

    I log bugs by documenting detailed steps to reproduce, including screenshots and logs.

    • Document detailed steps to reproduce the bug

    • Include screenshots or videos if applicable

    • Attach relevant logs or error messages

    • Assign severity and priority levels to the bug

    • Track bug status and resolution in a bug tracking tool

  • Answered by AI
  • Q4. What is agilemethodology
  • Ans. 

    Agile methodology is a software development approach that emphasizes flexibility, collaboration, and iterative development.

    • Focus on delivering working software in short iterations

    • Emphasizes collaboration between cross-functional teams

    • Allows for changes and adjustments throughout the development process

    • Common practices include daily stand-up meetings, sprint planning, and retrospectives

  • Answered by AI
  • Q5. What is selenium framework
  • Ans. 

    Selenium framework is a set of tools, libraries, and best practices used for automated testing of web applications.

    • Selenium framework allows for writing and executing automated tests for web applications.

    • It provides features like test case management, reporting, and integration with CI/CD tools.

    • Popular frameworks built on top of Selenium include TestNG, JUnit, and Cucumber.

    • Selenium WebDriver is a key component of the f...

  • Answered by AI

Skills evaluated in this interview

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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Approached by Company

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me your Self introduce
  • Q2. Tell me project structure
  • Ans. 

    Project structure refers to the organization of files, folders, and resources within a software project.

    • Main folders like src (source code), test (test cases), lib (libraries), docs (documentation)

    • Subfolders for specific modules or components

    • Configuration files like pom.xml, package.json, etc.

    • Build scripts like Jenkinsfile, Dockerfile

    • Version control files like .gitignore, .gitattributes

    • README.md file for project overvi

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Skill preparation

Accenture Interview FAQs

How many rounds are there in Accenture QA Test Lead interview?
Accenture interview process usually has 2 rounds. The most common rounds in the Accenture interview process are Technical and HR.
What are the top questions asked in Accenture QA Test Lead interview?

Some of the top questions asked at the Accenture QA Test Lead interview -

  1. Program to write fibonacci ser...read more
  2. Type of selectors in selen...read more
  3. Wait statements in selen...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.9
 • 2.8k Interviews
IBM Interview Questions
4.1
 • 2.3k Interviews
View all
Accenture QA Test Lead Salary
based on 126 salaries
₹9 L/yr - ₹20 L/yr
16% more than the average QA Test Lead Salary in India
View more details

Accenture QA Test Lead Reviews and Ratings

based on 8 reviews

3.0/5

Rating in categories

3.4

Skill development

3.4

Work-Life balance

2.6

Salary & Benefits

2.9

Job Security

2.6

Company culture

2.1

Promotions/Appraisal

3.0

Work Satisfaction

Explore 8 Reviews and Ratings
Application Development Analyst
38.8k salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Application Development - Senior Analyst
26.3k salaries
unlock blur

₹6.8 L/yr - ₹20.2 L/yr

Team Lead
24.1k salaries
unlock blur

₹7 L/yr - ₹25.4 L/yr

Senior Software Engineer
18.4k salaries
unlock blur

₹6 L/yr - ₹19 L/yr

Software Engineer
17.6k salaries
unlock blur

₹3.6 L/yr - ₹12.8 L/yr

Explore more salaries
Compare Accenture with

TCS

3.7
Compare

Cognizant

3.8
Compare

Capgemini

3.8
Compare

Infosys

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview