Upload Button Icon Add office photos

Accenture

Compare button icon Compare button icon Compare

Filter interviews by

Accenture QA Associate Interview Questions and Answers

Updated 6 Feb 2025

Accenture QA Associate Interview Experiences

1 interview found

QA Associate Interview Questions & Answers

user image Anonymous

posted on 6 Feb 2025

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

I was interviewed in Aug 2024.

Round 1 - HR 

(2 Questions)

  • Q1. Can you provide an introduction about yourself?
  • Q2. Can you describe your experience?
Round 2 - One-on-one 

(2 Questions)

  • Q1. Can you provide a self-introduction?
  • Q2. Technical question

Interview questions from similar companies

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
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

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
  • 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
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
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Feb 2024.

Round 1 - Coding Test 

It was a written test consisting of multiple-choice questions on Python programming.

Round 2 - Technical 

(1 Question)

  • Q1. It was technical questions on automation testing and api testing topics
Round 3 - HR 

(1 Question)

  • Q1. HR shared information about the company and the. Salary structure

QA Tester Interview Questions & Answers

Cognizant user image Rajalaxmi Vasan

posted on 11 Dec 2024

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

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. SDLC and STLC Cucumber
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

Accenture Interview FAQs

How many rounds are there in Accenture QA Associate interview?
Accenture interview process usually has 2 rounds. The most common rounds in the Accenture interview process are HR and One-on-one Round.

Tell us how to improve this page.

Accenture QA Associate 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
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
 • 3.1k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
Accenture QA Associate Salary
based on 14 salaries
₹2 L/yr - ₹4.5 L/yr
28% less than the average QA Associate Salary in India
View more details

Accenture QA Associate Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

3.0

Work-life balance

3.0

Salary

3.0

Job security

2.0

Company culture

3.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Application Development Analyst
38.9k salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Application Development - Senior Analyst
27k salaries
unlock blur

₹6.9 L/yr - ₹20.2 L/yr

Team Lead
24.2k salaries
unlock blur

₹7.1 L/yr - ₹25.5 L/yr

Senior Software Engineer
18.3k salaries
unlock blur

₹6 L/yr - ₹19.3 L/yr

Software Engineer
17.5k 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.7
Compare

Infosys

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