Upload Button Icon Add office photos

Accenture

Compare button icon Compare button icon Compare

Filter interviews by

Accenture Interview Questions, Process, and Tips

Updated 6 Mar 2025

Top Accenture Interview Questions and Answers

View all 3.9k questions

Accenture Interview Experiences

Popular Designations

8.1k interviews found

Devops Engineer Interview Questions & Answers

user image Fehma Aftab

posted on 22 Jun 2024

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

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

Round 1 - One-on-one 

(17 Questions)

  • Q1. Did you face any challenge while creating the DevOps pipeline?
  • Ans. 

    Yes, I faced challenges while creating the DevOps pipeline.

    • One challenge was integrating multiple tools and technologies into the pipeline.

    • Another challenge was ensuring smooth communication and collaboration between different teams involved in the pipeline.

    • I also faced challenges in automating the testing and deployment processes to achieve continuous integration and continuous delivery.

    • Dealing with legacy systems and...

  • Answered by AI
  • Q2. How do your container communicate in Kubernetes?
  • Ans. 

    Containers in Kubernetes communicate with each other through networking and service discovery mechanisms.

    • Containers within the same pod can communicate over localhost.

    • Containers in different pods can communicate using Kubernetes services.

    • Kubernetes assigns each pod a unique IP address for communication.

    • Kubernetes also supports DNS-based service discovery for containers.

  • Answered by AI
  • Q3. If you want to restrict the communication between the kubernetes pod, how would you restrict that one?
  • Ans. 

    Restricting communication between Kubernetes pods can be achieved using network policies.

    • Use Network Policies in Kubernetes to define rules for pod-to-pod communication

    • Specify which pods are allowed to communicate with each other based on labels

    • Deny all traffic by default and only allow specific traffic as needed

    • Example: Define a network policy to allow communication only between pods with label 'app=frontend' and 'app

  • Answered by AI
  • Q4. What is virtual private cloud or Vnet? What is the use of Vnet and why we use it in DevOps?
  • Ans. 

    A virtual private cloud (VPC) or Vnet is a private network in the cloud that allows you to isolate resources and control network traffic.

    • VPC/Vnet provides a secure and isolated environment for resources in the cloud.

    • It allows you to define your own IP address range, subnets, route tables, and network gateways.

    • VPC/Vnet helps in creating a secure connection between on-premises data centers and cloud resources.

    • It is used ...

  • Answered by AI
  • Q5. Can you tell me something about Ansible work in DevOps?
  • Ans. 

    Ansible is a popular automation tool used in DevOps for configuration management, application deployment, and orchestration.

    • Ansible is agentless, meaning it does not require any software to be installed on the nodes being managed.

    • It uses YAML syntax for writing playbooks, which are used to define automation tasks.

    • Ansible can be used for tasks such as provisioning servers, deploying applications, and managing configurat...

  • Answered by AI
  • Q6. What is Client based development?
  • Ans. 

    Client based development is a software development approach where the client's needs and feedback are prioritized throughout the development process.

    • Focus on meeting client requirements and expectations

    • Regular communication and feedback from the client

    • Iterative development cycles based on client input

    • Client involvement in decision-making processes

    • Examples: Agile development, customer-centric design

  • Answered by AI
  • Q7. What is resilience testing?
  • Ans. 

    Resilience testing is a type of testing that evaluates a system's ability to recover from failures and continue functioning.

    • Resilience testing involves intentionally introducing failures or disruptions to a system to see how it responds.

    • The goal of resilience testing is to identify weaknesses in the system's design or implementation that could lead to downtime or data loss.

    • Examples of resilience testing include simulat...

  • Answered by AI
  • Q8. What are DevOps KPI?
  • Ans. 

    DevOps KPI are key performance indicators used to measure the success of DevOps practices in an organization.

    • DevOps KPIs should align with business goals and objectives.

    • Examples of DevOps KPIs include deployment frequency, lead time for changes, mean time to recover, and change failure rate.

    • Monitoring KPIs helps in identifying areas for improvement and optimizing DevOps processes.

  • Answered by AI
  • Q9. What are the various branching strategies used in the version control system?
  • Ans. 

    Various branching strategies in version control systems help manage code changes effectively.

    • Mainline/Branch by Release: Each release has its own branch for bug fixes and maintenance.

    • Feature Branching: Each new feature is developed in a separate branch and merged back to main branch after completion.

    • Gitflow Workflow: Uses main, develop, feature, release, and hotfix branches for a structured workflow.

    • Trunk-Based Develop...

  • Answered by AI
  • Q10. What is feature branching and task branching?
  • Ans. 

    Feature branching and task branching are strategies used in version control systems to manage development tasks.

    • Feature branching involves creating a separate branch for each new feature being developed, allowing for isolation and independent development.

    • Task branching is similar to feature branching but is used for smaller tasks or bug fixes.

    • Both feature branching and task branching help in organizing and managing cod...

  • Answered by AI
  • Q11. What is the difference b/w Continuous delivery and continuous deployment?
  • Ans. 

    Continuous delivery focuses on automating the software delivery process up to production, while continuous deployment automatically deploys every change to production.

    • Continuous delivery involves automating the software delivery process up to production, ensuring that code is always in a deployable state.

    • Continuous deployment goes a step further by automatically deploying every change that passes automated tests to pro...

  • Answered by AI
  • Q12. Different phases in DevOps Methodology
  • Ans. 

    DevOps methodology consists of various phases including plan, code, build, test, release, deploy, operate, and monitor.

    • Plan: Define goals, set priorities, and create a roadmap.

    • Code: Develop and review code changes.

    • Build: Compile the code and create executable files.

    • Test: Verify code changes through automated testing.

    • Release: Deploy changes to production environment.

    • Deploy: Automate deployment process to various environ...

  • Answered by AI
  • Q13. What is blue green deployment pattern
  • Ans. 

    Blue green deployment pattern is a software release strategy that reduces downtime and risk by running two identical production environments.

    • In blue green deployment, one environment (blue) is currently live and serving production traffic, while the other environment (green) is idle.

    • Once the new version of the software is deployed to the green environment and tested thoroughly, traffic is switched from the blue to the ...

  • Answered by AI
  • Q14. What are key elements which are there in continuous testing tools?
  • Ans. 

    Key elements in continuous testing tools include automation, integration with CI/CD pipelines, reporting and analytics, scalability, and support for various testing types.

    • Automation of test cases to ensure quick feedback on code changes

    • Integration with CI/CD pipelines for seamless testing in the software delivery process

    • Reporting and analytics capabilities to track test results and identify issues

    • Scalability to handle ...

  • Answered by AI
  • Q15. Difference b/w centralized and distributed VCS
  • Ans. 

    Centralized VCS stores all versions of files in a central server, while distributed VCS allows each user to have a full copy of the repository.

    • Centralized VCS has a single point of failure, while distributed VCS is more resilient.

    • In centralized VCS, users need constant connection to the central server, while distributed VCS allows offline work.

    • Examples of centralized VCS include SVN and CVS, while Git is a popular dist

  • Answered by AI
  • Q16. How do you setup the VPC with azure?
  • Ans. 

    Setting up a VPC in Azure involves creating a virtual network, subnets, and configuring security groups.

    • Create a virtual network in the Azure portal

    • Define subnets within the virtual network

    • Configure network security groups to control inbound and outbound traffic

    • Establish peering connections with other VPCs if needed

  • Answered by AI
  • Q17. Describe about IAC and Configuration management
  • Ans. 

    IAC stands for Infrastructure as Code, which involves managing and provisioning infrastructure through code. Configuration management involves managing and maintaining the state of systems.

    • IAC allows for automating the process of setting up and managing infrastructure using code

    • Configuration management ensures that the desired state of systems is maintained consistently

    • Tools like Terraform, Ansible, and Puppet are comm...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Accenture Devops Engineer interview:
  • Azure
  • git
  • kubernetes
  • ansible
  • IAC
  • Configuration management
Interview preparation tips for other job seekers - Clear basics and be confident!!

Skills evaluated in this interview

Top Accenture Devops Engineer Interview Questions and Answers

Q1. If you want to restrict the communication between the kubernetes pod, how would you restrict that one?
View answer (1)

Devops Engineer Interview Questions asked at other Companies

Q1. Reverse the String Problem Statement You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string. Example: Input: STR = "abcde" Output: "edcba" Input: The first line of input cont... read more
View answer (3)

Trainee Interview Questions & Answers

user image Aryansh Rana

posted on 8 Oct 2024

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic Quant and Reasoning questions

Round 2 - Coding Test 

Simple D.P and problem solving questions

Round 3 - One-on-one 

(3 Questions)

  • Q1. Self-introduction
  • Q2. About your project and internships
  • Q3. Questions on Team Collaborations and Leadership

Trainee Interview Questions asked at other Companies

Q1. Ques1: There is a big file of words which is dynamically changing. We are continuously adding some words into it. How would you keep track of top 10 trending words at each moment? Ques2:Write a function that returns the length of the longes... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is the difference between Salesforce profile and Role
  • Ans. 

    Salesforce profile defines what a user can do, while role defines what a user should do.

    • Profiles control access to objects, fields, and records in Salesforce.

    • Roles define the hierarchy of users in an organization.

    • Profiles determine the permissions and settings available to a user.

    • Roles determine the level of access a user has to records owned by other users.

    • A user can have multiple profiles but only one role.

  • Answered by AI

Top Accenture Software Engineer Interview Questions and Answers

Q1. Reverse String Operations Problem Statement You are provided with a string S and an array of integers A of size M. Your task is to perform M operations on the string as specified by the indices in array A. The operations should be executed ... read more
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (196)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Logical ability, quantitive aptitude, math, pseudo code, english comprehension

Round 2 - Coding Test 

45mins, basic math questions

Round 3 - Technical 

(2 Questions)

  • Q1. What is the difference between var and let keywords in JavaScript?
  • Ans. 

    var is function-scoped while let is block-scoped in JavaScript.

    • var keyword is function-scoped, meaning it is accessible throughout the function it is declared in.

    • let keyword is block-scoped, meaning it is only accessible within the block it is declared in.

    • Using var can lead to variable hoisting issues, while let provides more predictable behavior.

    • Example: var x = 10; function test() { var x = 20; console.log(x); } test

  • Answered by AI
  • Q2. What is the difference between == and ===?
  • Ans. 

    The difference between == and === is that == checks for equality after type coercion, while === checks for equality without type coercion.

    • The == operator compares two values after converting them to a common type if they are of different types.

    • The === operator compares two values without type conversion, so they must be of the same type to be considered equal.

    • Example: 5 == '5' will return true because the values are eq...

  • Answered by AI

Skills evaluated in this interview

Top Accenture Associate Engineer Interview Questions and Answers

Q1. In how many and in which cities of India Accenture is located?
View answer (1)

Associate Engineer Interview Questions asked at other Companies

Q1. Count Ways To Reach The N-th Stair Problem Statement You are given a number of stairs, N. Starting at the 0th stair, you need to reach the Nth stair. Each time you can either climb one step or two steps. You have to return the number of dis... read more
View answer (1)

Accenture interview questions for popular designations

 Associate Software Engineer

 (630)

 Application Developer

 (258)

 Application Development Analyst

 (255)

 Software Developer

 (238)

 Software Engineer

 (214)

 Analyst

 (202)

 Application Development Associate

 (183)

 Senior Analyst

 (152)

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

I was interviewed in Jul 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. US GAAP accounting standards
  • Ans. 

    US GAAP accounting standards are a set of rules and guidelines used in the United States for financial reporting.

    • US GAAP stands for Generally Accepted Accounting Principles

    • It provides a standardized framework for financial reporting

    • US GAAP is used by publicly traded companies in the US

    • It ensures consistency and comparability in financial statements

    • Examples of US GAAP principles include revenue recognition, matching pri

  • Answered by AI
  • Q2. Revenue recognition methodology and cost accounting
Round 2 - Technical 

(2 Questions)

  • Q1. Case based financial Modelling on Excel
  • Q2. Question if you will prioritise work or personal life. It is expected to prioritise work, even when you have personal commitments.
Round 3 - HR 

(2 Questions)

  • Q1. Salary discussion
  • Q2. Joining date discussion

Pricing Analyst Interview Questions asked at other Companies

Q1. What Are The Qualities That A Pricing Analyst Should Have?
View answer (2)

Get interview-ready with Top Accenture Interview Questions

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

(2 Questions)

  • Q1. What is prop drilling
  • Ans. 

    Prop drilling is the process of passing props down multiple levels of nested components in React.

    • Prop drilling occurs when a prop needs to be passed through multiple levels of components that do not need the prop themselves.

    • It can lead to unnecessary passing of props through intermediate components, making the code harder to maintain.

    • To avoid prop drilling, you can use Context API, Redux, or React's useContext and useR...

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

    Hoisting is a JavaScript mechanism where variable and function declarations are moved to the top of their containing scope during the compilation phase.

    • Variable declarations are hoisted to the top of their scope, but not their assignments.

    • Function declarations are fully hoisted, meaning they can be called before they are declared.

    • Hoisting can lead to unexpected behavior if not understood properly.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Explain useContext hook
  • Ans. 

    useContext hook allows components to access data from a context without passing props down manually

    • useContext hook is used to consume a context created by React.createContext

    • It takes the context object as an argument and returns the current context value for that context

    • It allows components to subscribe to context changes and re-render when the context value changes

  • Answered by AI

Skills evaluated in this interview

Top Accenture React Js Frontend Developer Interview Questions and Answers

Q1. How do you implement dark mode in an application?
View answer (1)

React Js Frontend Developer Interview Questions asked at other Companies

Q1. 1. What is difference between abstract class and interface ?
View answer (1)

Jobs at Accenture

View all
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Technical 

(3 Questions)

  • Q1. Exception handling in java and the keywords used
  • Ans. 

    Exception handling in Java involves try, catch, finally, and throw keywords.

    • Use try block to enclose the code that may throw an exception

    • Use catch block to handle the exception

    • Use finally block to execute code after try/catch blocks

    • Use throw keyword to manually throw an exception

  • Answered by AI
  • Q2. How to call a overridden method?
  • Ans. 

    To call an overridden method, use the super keyword followed by the method name.

    • Use 'super' keyword followed by the method name to call the overridden method.

    • Example: super.methodName();

  • Answered by AI
  • Q3. Behaviour of final keyword in java
  • Ans. 

    The final keyword in Java is used to restrict the user from changing the value of a variable, making it constant.

    • Final variables cannot be reassigned once initialized

    • Final methods cannot be overridden in subclasses

    • Final classes cannot be extended

  • Answered by AI

Skills evaluated in this interview

Top Accenture Application Developer Interview Questions and Answers

Q1. Difference between tmap & tjoin Types of connection Difference between truncate delete What is ETL What are triggers Type of join
View answer (4)

Application Developer Interview Questions asked at other Companies

Q1. Minimum Cost to Connect All Points Problem Statement Given an array COORDINATES representing the integer coordinates of some points on a 2D plane, determine the minimum cost required to connect all points. The cost to connect two points, (x... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Tell Me About Yourself
  • Ans. 

    I am a highly experienced security professional with a strong background in delivering security solutions and managing projects.

    • Over 8 years of experience in the cybersecurity field

    • Expertise in implementing security measures to protect organizations from cyber threats

    • Proven track record of successfully delivering security projects on time and within budget

    • Strong communication and leadership skills

    • Certified in CISSP and

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Tell Me about yourself
  • Ans. 

    Experienced security professional with a background in delivering high-quality security solutions.

    • Over 5 years of experience in the security field

    • Strong knowledge of security frameworks and best practices

    • Proven track record of successfully delivering security projects on time and within budget

    • Excellent communication and problem-solving skills

    • Certified in CISSP and CISM

  • Answered by AI
  • Q2. Work Experience
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude was there and if you are passed in apti then you will move to coding round in an hour.

Round 2 - Coding Test 

In coding round 2 questions there, first is easy level and other is moderate level. But may times, there software doesn't work properly so test cases of soo easy question don't pass.

Round 3 - HR 

(3 Questions)

  • Q1. Introduce about yourself.
  • Ans. 

    I am a recent graduate with a degree in Engineering, passionate about problem-solving and eager to learn and grow in a professional environment.

    • Recent graduate with a degree in Engineering

    • Passionate about problem-solving

    • Eager to learn and grow in a professional environment

  • Answered by AI
  • Q2. What challenges did you face in your project?
  • Q3. What are your strengths and weaknesses
  • Ans. 

    My strengths include problem-solving skills and attention to detail. My weaknesses include public speaking and time management.

    • Strengths: problem-solving skills

    • Strengths: attention to detail

    • Weaknesses: public speaking

    • Weaknesses: time management

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You can practice question on you tube and other platforms like prep insta etc. And the coding question will be easy but this is not important that the test cases will be passes as there software has so much issues and also test will be open if your laptop will not have any third arty apps, so before test ensure that you delete all of these types of apps for smooth performance.

Top Accenture Associate Engineer Interview Questions and Answers

Q1. In how many and in which cities of India Accenture is located?
View answer (1)

Associate Engineer Interview Questions asked at other Companies

Q1. Count Ways To Reach The N-th Stair Problem Statement You are given a number of stairs, N. Starting at the 0th stair, you need to reach the Nth stair. Each time you can either climb one step or two steps. You have to return the number of dis... read more
View answer (1)
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 - One-on-one 

(1 Question)

  • Q1. What is differ amount?

Interview Preparation Tips

Interview preparation tips for other job seekers - Billing experience is required

Billing Executive Interview Questions asked at other Companies

Q1. If a customer doesn't have a GST, how will you ship the goods him...?
View answer (3)

Accenture Interview FAQs

How many rounds are there in Accenture interview?
Accenture interview process usually has 2-3 rounds. The most common rounds in the Accenture interview process are Technical, HR and Aptitude Test.
How to prepare for Accenture 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 Accenture. The most common topics and skills that interviewers at Accenture expect are Consulting, SQL, Application Development, Java and Business process.
What are the top questions asked in Accenture interview?

Some of the top questions asked at the Accenture interview -

  1. If insurance premium is paid for an entire year 1st January to 31st December an...read more
  2. Case. There is a housing society “The wasteful society”, you collect all th...read more
  3. What are three golden rules of accounti...read more
What are the most common questions asked in Accenture HR round?

The most common HR questions asked in Accenture interview are -

  1. What are your salary Expectatio...read more
  2. General questi...read more
How long is the Accenture interview process?

The duration of Accenture interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Accenture Interview Process

based on 6.8k interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.7k 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
 • 2.9k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
View all

Accenture Reviews and Ratings

based on 56.6k reviews

3.8/5

Rating in categories

3.7

Skill development

3.6

Work-life balance

3.4

Salary

3.8

Job security

3.8

Company culture

3.1

Promotions

3.5

Work satisfaction

Explore 56.6k Reviews and Ratings
Packaged App Development Associate Manager

Kochi,

Coimbatore

+1

5-10 Yrs

Not Disclosed

I&F Decision Sci Practitioner Specialist

Bangalore / Bengaluru

7-11 Yrs

Not Disclosed

I&F Decision Sci Practitioner Specialist

Gurgaon / Gurugram

7-11 Yrs

Not Disclosed

Explore more jobs
Application Development Analyst
38.9k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Application Development - Senior Analyst
26.9k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
24.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
18.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
17.4k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Accenture with

TCS

3.7
Compare

Cognizant

3.7
Compare

Capgemini

3.7
Compare

Infosys

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