Upload Button Icon Add office photos

Accenture

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Accenture Senior Software Engineer Interview Questions, Process, and Tips

Updated 2 Mar 2025

Top Accenture Senior Software Engineer Interview Questions and Answers

  • Q1. 1. OOPS CONCEPTS 2. DIFFERENCE BETWEEN ABSTRACT AND INTERFACE 3. WRITE A SQL QUERY TO GET SECOND HIGH SALARY FROM SALARY TABLE. 4. What is index in SQL server 5. Define p ...read more
  • Q2. What you have used for styling, Material UI or bootstrap.
  • Q3. When to use an API and when depend on event driven system?
View all 41 questions

Accenture Senior Software Engineer Interview Experiences

79 interviews found

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

(1 Question)

  • Q1. Interview questions was based on skillsets in resume.
Round 2 - One-on-one 

(1 Question)

  • Q1. Hr rount was abt salary negotiation
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is event driven architecture?
  • Ans. 

    Event driven architecture is a design pattern where the flow of the system is determined by events.

    • Events are generated by different components and trigger actions in other components.

    • Decoupling of components allows for better scalability and flexibility.

    • Commonly used in systems where real-time processing and responsiveness are crucial.

    • Examples include message queues like Kafka, event sourcing, and pub/sub systems.

  • Answered by AI
  • Q2. When to use an API and when depend on event driven system?
  • Ans. 

    APIs are used for direct communication between systems, while event driven systems are used for asynchronous communication based on events.

    • Use APIs when you need direct communication between systems, such as retrieving data from a database or integrating with a third-party service.

    • Depend on event driven systems when you want to trigger actions based on events, such as user interactions or system notifications.

    • APIs are ...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. What are the steps you can take to improve your juniors?
  • Q2. How will you respond to a complicated situtation and when will you take help from manager?

Skills evaluated in this interview

Senior Software Engineer Interview Questions Asked at Other Companies

asked in DBS Bank
Q1. Tell me about yourself. What technology are you using? What is a ... read more
asked in GlobalLogic
Q2. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
asked in UST
Q3. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q4. Pascal's Triangle Construction You are provided with an integer ' ... read more
Q5. K Largest Elements Problem Statement You are given an integer k a ... read more
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - HR 

(2 Questions)

  • Q1. Where can you see your self in next 5 years?
  • Ans. 

    In the next 5 years, I see myself growing into a technical leadership role within the company, leading a team of engineers and contributing to high-impact projects.

    • Continuing to enhance my technical skills and knowledge through ongoing learning and certifications

    • Taking on more responsibilities within the team and mentoring junior engineers

    • Contributing to the development of innovative software solutions that drive busin...

  • Answered by AI
  • Q2. Why do you want to join this company?
  • Ans. 

    I am impressed by the company's innovative projects and collaborative work culture.

    • I am excited about the opportunity to work on cutting-edge technologies and contribute to impactful projects.

    • I value the company's emphasis on teamwork and collaboration, which aligns with my own work style.

    • I believe the company's commitment to continuous learning and growth will help me further develop my skills and expertise.

    • I am drawn...

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

I applied via Naukri.com and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Scenario Questions on SQL
  • Q2. Deep Problem-Solving Questions

Accenture interview questions for designations

 Senior Software Engineer Testing

 (5)

 Senior Software Development Engineer

 (1)

 Senior Software QA Engineer

 (1)

 Senior Associate Software Engineer

 (1)

 Software Engineer

 (214)

 Senior QA Engineer -Software Testing

 (2)

 Senior Software Developer

 (16)

 Senior Software Analyst

 (5)

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Reverse a given string

Get interview-ready with Top Accenture Interview Questions

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

I was interviewed in Apr 2024.

Round 1 - Technical 

(1 Question)

  • Q1. 1. DI 2. ArrayList vs LinkedList 3. Exception hierarchy 4. Design pattern 5. Transaction management
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain CI CD and pipeline
  • Ans. 

    CI/CD stands for Continuous Integration/Continuous Deployment. It is a software development practice where code changes are automatically built, tested, and deployed.

    • CI/CD automates the process of integrating code changes into a shared repository and deploying them to production.

    • Continuous Integration involves automatically building and testing code changes as soon as they are pushed to the repository.

    • Continuous Deploy...

  • Answered by AI
  • Q2. Write an ansible code
  • Ans. 

    Ansible code example for automating software deployment

    • Use Ansible playbooks to define tasks and configurations

    • Utilize Ansible modules for managing servers and applications

    • Leverage Ansible roles for organizing and reusing code

    • Example: ansible-playbook deploy.yml

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Difference between link and import
  • Ans. 

    Link is used to connect external CSS or JavaScript files in HTML, while import is used to bring in modules or components in JavaScript.

    • Link is used in HTML to connect external CSS files, while import is used in JavaScript to bring in modules or components.

    • Link is a HTML tag, while import is a JavaScript statement.

    • Link is used for styling and layout, while import is used for code organization and modularity.

    • Example:

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

    Debouncing is a technique used in software development to prevent multiple rapid triggers of an event from being processed.

    • Debouncing helps in improving performance by reducing unnecessary event processing.

    • It involves setting a delay before allowing the event to be triggered, ensuring only one event is processed.

    • Commonly used in user interface interactions like button clicks to prevent multiple rapid clicks from being ...

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Spring vs springboot Jpa
  • Ans. 

    Spring is a framework for building Java applications, while Spring Boot is a tool for quickly creating Spring applications. JPA is a Java specification for ORM.

    • Spring is a comprehensive framework for building Java applications with features like dependency injection and aspect-oriented programming.

    • Spring Boot is a tool that simplifies the process of creating Spring applications by providing defaults and auto-configurat...

  • Answered by AI
  • Q2. Java 8 features

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Indeed and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Got almost 8 calls regarding scheduling interview in one month but no invitation received
Contribute & help others!
anonymous
You can choose to be anonymous

Accenture Interview FAQs

How many rounds are there in Accenture Senior Software Engineer interview?
Accenture interview process usually has 1-2 rounds. The most common rounds in the Accenture interview process are Technical, HR and One-on-one Round.
What are the top questions asked in Accenture Senior Software Engineer interview?

Some of the top questions asked at the Accenture Senior Software Engineer interview -

  1. 1. OOPS CONCEPTS 2. DIFFERENCE BETWEEN ABSTRACT AND INTERFACE 3. WRITE A SQL QU...read more
  2. What you have used for styling, Material UI or bootstr...read more
  3. When to use an API and when depend on event driven syst...read more
How long is the Accenture Senior Software Engineer interview process?

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

Recently Viewed

SALARIES

Aditya Birla Sun Life Insurance

SALARIES

Kotak Mahindara Life Insurance

INTERVIEWS

HDFC Life

No Interviews

INTERVIEWS

Okaya Power

No Interviews

INTERVIEWS

Accenture

No Interviews

SALARIES

NeoSOFT

REVIEWS

Aditya Birla Sun Life Insurance

No Reviews

REVIEWS

Collabera Technologies

No Reviews

SALARIES

AON Global Insurance Brokers

SALARIES

Bajaj Allianz Life Insurance

Tell us how to improve this page.

Accenture Senior Software Engineer Interview Process

based on 75 interviews

4 Interview rounds

  • Technical Round
  • HR Round - 1
  • HR Round - 2
  • HR Round - 3
View more
Accenture Senior Software Engineer Salary
based on 18.1k salaries
₹6 L/yr - ₹20 L/yr
17% less than the average Senior Software Engineer Salary in India
View more details

Accenture Senior Software Engineer Reviews and Ratings

based on 1.3k reviews

4.0/5

Rating in categories

3.8

Skill development

3.8

Work-life balance

3.5

Salary

3.9

Job security

4.0

Company culture

3.2

Promotions

3.6

Work satisfaction

Explore 1.3k Reviews and Ratings
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.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

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