Upload Button Icon Add office photos

Filter interviews by

Accenture Test Manager Project Manager Interview Questions and Answers

Updated 24 Nov 2024

Accenture Test Manager Project Manager Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Project management process related
  • Q2. How to get the client confidence
  • Ans. 

    Building client confidence requires clear communication, delivering on promises, and consistently providing high quality work.

    • Establish clear communication channels with the client to ensure transparency and understanding

    • Deliver on promises and commitments made to the client to build trust and reliability

    • Consistently provide high quality work and exceed client expectations to showcase expertise and dedication

    • Seek feedb...

  • Answered by AI
  • Q3. How you can manage the things in less time
  • Ans. 

    Prioritize tasks, delegate, use time management tools, minimize distractions

    • Prioritize tasks based on importance and deadlines

    • Delegate tasks to team members to distribute workload

    • Use time management tools like calendars, to-do lists, and project management software

    • Minimize distractions by setting boundaries, turning off notifications, and creating a focused work environment

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do your best you will get it, try to share your experience, story, challenges you faced and how you responded

Interview questions from similar companies

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

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

Round 1 - Technical 

(9 Questions)

  • Q1. Difference between absolute and relative Xpath
  • Ans. 

    Absolute Xpath starts from the root element, while relative Xpath starts from any node in the DOM structure.

    • Absolute Xpath starts with a single forward slash (/) and starts selection from the root node.

    • Relative Xpath starts with a double forward slash (//) and starts selection from the current node or any node in the DOM structure.

    • Absolute Xpath is more brittle and prone to breaking if the structure of the page changes...

  • Answered by AI
  • Q2. What would be return if multiple tabs are open
  • Ans. 

    The return would be the number of tabs open in the browser.

    • The return value would be an integer representing the count of open tabs.

    • For example, if there are 5 tabs open, the return value would be 5.

  • Answered by AI
  • Q3. What are the waits in selenium
  • 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 occur before proceeding further in the code.

    • Fluent Wait: Waits for a condition to be true with a defined polling frequency.

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

  • Answered by AI
  • Q4. Exceptions in selenium
  • Ans. 

    Exceptions in Selenium are errors that occur during test execution, disrupting the flow of the test script.

    • Exceptions are thrown when there is an unexpected behavior in the application under test or in the test script itself.

    • Common exceptions in Selenium include NoSuchElementException, ElementNotVisibleException, TimeoutException, and StaleElementReferenceException.

    • Handling exceptions in Selenium can be done using try-...

  • Answered by AI
  • Q5. What is feature and step definitions in cucumber BDD
  • Ans. 

    Feature files contain high-level description of the functionality to be tested, while step definitions are the implementation of the steps in the feature file using code.

    • Feature files are written in Gherkin syntax and describe the behavior of the application in plain text.

    • Step definitions are written in programming languages like Java, Ruby, etc., and map the steps in the feature file to automation code.

    • Feature files a...

  • Answered by AI
  • Q6. How to input data in cucumber
  • Ans. 

    Data can be input in Cucumber using feature files and step definitions.

    • Data can be input in feature files using scenarios and scenario outlines

    • Step definitions can be used to define the actions to be taken with the input data

    • Data tables can be used in feature files to input structured data

    • Examples keyword can be used in scenario outlines to provide multiple sets of input data

  • Answered by AI
  • Q7. Basic Java questions like access modifiers, method overloading and overriding
  • Q8. What is Test case, Test plan and Test Secenarios
  • Ans. 

    Test case is a set of conditions or variables under which a tester will determine whether a system under test satisfies requirements. Test plan is a document outlining the scope, approach, resources, and schedule of testing activities. Test scenarios are detailed descriptions of possible interactions with the system.

    • Test case: specific conditions to be tested, expected results, steps to execute

    • Test plan: overall strate...

  • Answered by AI
  • Q9. Hooks in Java
  • Ans. 

    Hooks in Java are methods that allow subclasses to override or extend the behavior of a superclass.

    • Hooks are commonly used in frameworks like JUnit and TestNG for test automation.

    • They are often used for setup and teardown operations before and after test methods.

    • Examples include @Before, @After, @BeforeClass, and @AfterClass annotations in JUnit.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The second round interview was quite challenging, with numerous questions focused on core Java topics such as data structures and linked lists. It felt less like a testing interview and more akin to a developer interview.

Skills evaluated in this interview

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

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

Round 1 - Technical 

(5 Questions)

  • Q1. Can you explain the Maven build lifecycle?
  • Ans. 

    Maven build lifecycle consists of phases like compile, test, package, install, deploy.

    • Maven build lifecycle consists of three main phases: clean, default, and site.

    • Each phase consists of a series of goals that are executed in a specific order.

    • Some common goals in Maven build lifecycle include compile, test, package, install, and deploy.

    • The clean phase removes all files generated by the previous build.

    • The default phase ...

  • Answered by AI
  • Q2. What is the code to reverse a sentence?
  • Ans. 

    Code to reverse a sentence using array of strings.

    • Split the sentence into an array of words

    • Reverse the array

    • Join the array back into a sentence

  • Answered by AI
  • Q3. What is static block in java?
  • Ans. 

    Static block in Java is a block of code that is executed only once when the class is loaded.

    • Static block is used to initialize static variables of a class.

    • It is executed before the main method.

    • Syntax: static { // code to be executed }

    • Example: static { System.out.println("Static block executed"); }

  • Answered by AI
  • Q4. What is exclude and include in TestNG?
  • Ans. 

    Exclude and include in TestNG are used to specify which test methods to run or skip during test execution.

    • Exclude attribute is used to specify which test methods to skip during test execution

    • Include attribute is used to specify which test methods to run during test execution

    • Both attributes can be used in the testng.xml file or in the @Test annotation

    • Example: @Test(groups = {"smoke"}, excludeGroups = {"regression"})

  • Answered by AI
  • Q5. What is code for reverse a digit?
  • Ans. 

    To reverse a digit, convert it to a string and then reverse the string.

    • Convert the digit to a string

    • Use built-in functions to reverse the string

    • Convert the reversed string back to a digit if needed

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(5 Questions)

  • Q1. Digital testing concepts
  • Q2. What is RS232 & 422
  • Q3. What RPS in power testing
  • Q4. Digital communication
  • Q5. Semiconductor basic information

Interview Preparation Tips

Interview preparation tips for other job seekers - Noting
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

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 Nov 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Java related coding and questions related to selenium

Round 2 - Technical 

(1 Question)

  • Q1. Selenium,java,testng,cucumber related questions
Round 3 - Technical 

(1 Question)

  • Q1. Framework Related Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Must have knowledge in framework that we use
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(5 Questions)

  • Q1. Asked me to write a two programs - identifying duplicates words 2. Sum of series of numbers
  • Q2. What is cucumber options
  • Ans. 

    Cucumber options are configuration settings used in Cucumber to customize test execution.

    • Cucumber options can be used to specify features, tags, formats, and more in the test execution

    • Examples include specifying tags to run specific scenarios, setting output formats for test reports, and defining feature files to run

  • Answered by AI
  • Q3. Oops concepts used in my project
  • Ans. 

    In my project, I have used Oops concepts like Inheritance, Polymorphism, Encapsulation, and Abstraction.

    • Inheritance: Reusing code and creating a hierarchy of classes.

    • Polymorphism: Ability to present the same interface for different data types.

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

    • Abstraction: Hiding the implementation details and showing only the necessary features.

  • Answered by AI
  • Q4. Data providers, invocation count
  • Q5. Find elements, window handles return type
  • Ans. 

    The find elements method returns a list of web elements matching a specified locator. Window handles return type is a set of strings representing unique identifiers for browser windows.

    • Find elements method returns a list of web elements matching a specified locator

    • Window handles return type is a set of strings representing unique identifiers for browser windows

  • 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 LinkedIn and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Stlc question asked manual qa
Round 2 - Technical 

(1 Question)

  • Q1. Coding asked sql query
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
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Wap for reverse string in java
  • Ans. 

    Reverse a string in Java using StringBuilder's reverse method.

    • Create a StringBuilder object with the input string

    • Use the reverse() method of StringBuilder to reverse the string

    • Convert the reversed StringBuilder object back to a string using toString()

  • Answered by AI
  • Q2. What is interface
  • Ans. 

    An interface in software development is a contract that defines the methods that a class must implement.

    • Interfaces in programming languages like Java, C#, and TypeScript provide a way to achieve abstraction and multiple inheritance.

    • Classes implementing an interface must provide concrete implementations for all the methods defined in the interface.

    • Interfaces allow for loose coupling between components, making code more

  • Answered by AI

Skills evaluated in this interview

Accenture Interview FAQs

How many rounds are there in Accenture Test Manager Project Manager interview?
Accenture interview process usually has 1 rounds. The most common rounds in the Accenture interview process are Technical.
What are the top questions asked in Accenture Test Manager Project Manager interview?

Some of the top questions asked at the Accenture Test Manager Project Manager interview -

  1. How you can manage the things in less t...read more
  2. How to get the client confide...read more
  3. Project management process rela...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 Test Manager Project Manager Salary
based on 37 salaries
₹17 L/yr - ₹33.2 L/yr
24% more than the average Test Manager Project Manager Salary in India
View more details

Accenture Test Manager Project Manager Reviews and Ratings

based on 1 review

2.0/5

Rating in categories

2.0

Skill development

1.0

Work-Life balance

3.0

Salary & Benefits

3.0

Job Security

2.0

Company culture

1.0

Promotions/Appraisal

1.0

Work Satisfaction

Explore 1 Review and Rating
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