Upload Button Icon Add office photos

Accenture

Compare button icon Compare button icon Compare

Filter interviews by

Accenture Software Developer Interview Questions, Process, and Tips

Updated 4 Mar 2025

Top Accenture Software Developer Interview Questions and Answers

  • Q1. Maximum Subarray Sum Problem Statement Given an array ARR consisting of N integers, your goal is to determine the maximum possible sum of a non-empty contiguous subarray ...read more
  • Q2. Ninja and Candies Problem Ninja, a boy from Ninjaland, receives 1 coin every morning from his mother. He wants to purchase exactly 'N' candies. Each candy usually costs ...read more
  • Q3. Print Permutations - String Problem Statement Given an input string 'S', you are tasked with finding and returning all possible permutations of the input string. Input: ...read more
View all 107 questions

Accenture Software Developer Interview Experiences

238 interviews found

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

I applied via LinkedIn and was interviewed before Oct 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

It was easy round according to me

Round 3 - Coding Test 

It was also very easy round according to me

Round 4 - One-on-one 

(5 Questions)

  • Q1. Basic Conversation between me and interviewer, again easy round
  • Q2. Tell me about yourself
  • Q3. Tell about your Strengths
  • Q4. Tell about our company
  • Q5. Why you want to join this company

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Technical questions about the OOPs, Basics of C#, ASP.Net MVC

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I was interviewed before Apr 2023.

Round 1 - Technical 

(3 Questions)

  • Q1. REST vs Soap, Best http practice
  • Ans. 

    REST is lightweight, flexible, and widely used. SOAP is more rigid and has more features.

    • REST uses standard HTTP methods like GET, POST, PUT, DELETE for communication.

    • SOAP uses XML for message format and WSDL for describing services.

    • REST is stateless and cacheable, making it faster and more scalable.

    • SOAP has built-in security and transaction support, but can be slower and more complex.

    • Best practice is to use REST for s...

  • Answered by AI
  • Q2. HTTP operations
  • Q3. Microservice arch

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Quant and verbal 2 hours

Round 2 - HR 

(2 Questions)

  • Q1. Tell me about yiur family
  • Q2. Why do you want to join accenture

Accenture interview questions for designations

 Associate Software Developer

 (38)

 Senior Software Developer

 (15)

 Software Developer fresher

 (10)

 Junior Software Developer

 (5)

 Software Developer Intern

 (4)

 Java Software Developer

 (4)

 Software Application Developer

 (2)

 Assistant Software Developer

 (1)

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

I applied via Naukri.com and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Related to joins, scalar function and other functions . Magic table , cursor

Interview Preparation Tips

Topics to prepare for Accenture Software Developer interview:
  • MS SQL Server
Interview preparation tips for other job seekers - Be ready with writing the query and show the result

Get interview-ready with Top Accenture Interview Questions

I applied via Naukri.com and was interviewed in Jun 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. What is . Net interview questions on . Net c#
Round 3 - HR 

(1 Question)

  • Q1. About salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Looking for job opportunity currently working as a Genzeon Technology solution in hyderabad

Software Developer Jobs at Accenture

View all
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Easty aptitude test . 1 hour test

Round 2 - Technical 

(1 Question)

  • Q1. What is CLR , dependancy injection ,appsettings , table ,view , difference between stored procedure & functions , configureservices , Filters
  • Ans. 

    CLR is Common Language Runtime, dependency injection is a design pattern, appsettings is a configuration file, tables and views are database objects, stored procedures and functions are database routines, configureservices is a method in ASP.NET Core, filters are used for request/response filtering.

    • CLR is the runtime environment that executes .NET applications

    • Dependency injection is a design pattern where dependencies ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic .net interview questions

I was interviewed in Sep 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Easy

It contains questions from quants, reasoning, and basic computer science fundamentals. After that there were 2 coding questions.

  • Q1. 

    Print Permutations - String Problem Statement

    Given an input string 'S', you are tasked with finding and returning all possible permutations of the input string.

    Input:

    The first and only line of input ...
  • Ans. 

    Return all possible permutations of a given input string.

    • Use recursion to generate all possible permutations of the input string.

    • Swap characters at different positions to generate different permutations.

    • Handle duplicate characters by skipping swapping if the characters are the same.

    • Return the list of permutations as an array of strings.

  • Answered by AI
  • Q2. 

    Maximum Subarray Sum Problem Statement

    Given an array ARR consisting of N integers, your goal is to determine the maximum possible sum of a non-empty contiguous subarray within this array.

    Example of Sub...

  • Ans. 

    Find the maximum sum of a contiguous subarray in an array of integers.

    • Use Kadane's algorithm to find the maximum subarray sum efficiently.

    • Initialize two variables: maxEndingHere and maxSoFar.

    • Iterate through the array and update the variables accordingly.

    • Return the maxSoFar as the result.

  • Answered by AI
Round 2 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

I was expecting it to be coding round but it was more kind of HR round. They ask basic questions about how you see things.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Galgotias College of Engineering and Technology, Greater Noida. Eligibility criteriaNo CriteriaAccenture interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPS, OS, Dynamic Programming, Graphs and TreesTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Do as much as coding question you can do.
Tip 2 : Do some projects also.
Tip 3 : Revise and clear your basic concepts too.

Application resume tips for other job seekers

Tip 1 : Mention only things related to job profile only.
Tip 2 : Make it page pager.

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Developer Interview Questions & Answers

user image Chellamuthu Ramaneela

posted on 20 Feb 2024

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

I applied via Naukri.com and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Oops concepts, SQL queries, MVC patterns , Angular JS
Round 2 - HR 

(1 Question)

  • Q1. CTC details, High level technical discussion

I applied via Monster and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

12 Questions

  • Q1. Why Accenture good job
  • Q2. Because it is good salary
  • Q3. What is benefit in Accenture
  • Q4. I has good facilities
  • Q5. Why Accenture has good work
  • Q6. What is Accenture company work
  • Q7. What is good in Accenture
  • Q8. All facilities have in Accenture
  • Q9. Work in good
  • Q10. Good facilities
  • Q11. Have Accenture in good place
  • Q12. Accenture have good place

Interview Preparation Tips

Interview preparation tips for other job seekers - Accenture have good company and have good job and good salary

Accenture Interview FAQs

How many rounds are there in Accenture Software Developer interview?
Accenture interview process usually has 2-3 rounds. The most common rounds in the Accenture interview process are Aptitude Test, Technical and Coding Test.
How to prepare for Accenture Software Developer 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 SQL, Javascript, XML, Digital Marketing and CRM.
What are the top questions asked in Accenture Software Developer interview?

Some of the top questions asked at the Accenture Software Developer interview -

  1. What is the difference between padding and marg...read more
  2. How would you measure the stack space without using the task manager, when an a...read more
  3. What are different types of directives in Angula...read more
How long is the Accenture Software Developer interview process?

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

Tell us how to improve this page.

Accenture Software Developer Interview Process

based on 255 interviews

5 Interview rounds

  • Aptitude Test Round
  • Coding Test Round
  • HR Round - 1
  • HR Round - 2
  • HR Round - 3
View more
Accenture Software Developer Salary
based on 6.1k salaries
₹4.1 L/yr - ₹17.8 L/yr
24% more than the average Software Developer Salary in India
View more details

Accenture Software Developer Reviews and Ratings

based on 545 reviews

4.1/5

Rating in categories

3.9

Skill development

4.0

Work-life balance

3.7

Salary

4.0

Job security

4.0

Company culture

3.4

Promotions

3.8

Work satisfaction

Explore 545 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.2k 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