Upload Button Icon Add office photos

Filter interviews by

Accenture Application Developer Interview Questions, Process, and Tips

Updated 5 Feb 2025

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
  • Q2. What is the difference between @Controller and @RestController
  • Q3. is the gold rate increasing or decreasing for the past 1 week
View all 223 questions

Accenture Application Developer Interview Experiences

257 interviews found

Application Developer Interview Questions & Answers

user image Deepak Mitrani

posted on 12 Jul 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
No response

I was interviewed in Jun 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Write code a reverse a sentence in js
  • Ans. 

    Reverse a sentence in JavaScript

    • Split the sentence into an array of words

    • Use the reverse() method to reverse the array

    • Join the reversed array back into a string

  • Answered by AI
  • Q2. What are closures
  • Ans. 

    Closures are functions that have access to their own scope, as well as the scope in which they were defined.

    • Closures can access variables from their outer function even after the outer function has finished executing.

    • Closures can be used to create private variables in JavaScript.

    • Example: function outerFunction() { let outerVar = 'I am outer'; return function innerFunction() { console.log(outerVar); }; }

  • 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 Referral and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Array, string, basic coding questions

Round 2 - Technical 

(3 Questions)

  • Q1. What are adcantages of spring boot
  • Ans. 

    Spring Boot provides rapid application development, simplified configuration, embedded servers, and production-ready features.

    • Rapid application development with minimal configuration

    • Embedded servers for easy deployment

    • Production-ready features like metrics, health checks, and externalized configuration

    • Simplified dependency management with Spring Boot Starter projects

  • Answered by AI
  • Q2. Annotations of spring boot
  • Ans. 

    Annotations in Spring Boot are used to simplify the configuration and development of Spring applications.

    • Annotations are used to define the behavior of Spring components, such as controllers, services, and repositories.

    • Annotations like @RestController, @Service, and @Repository are commonly used in Spring Boot applications.

    • Annotations can also be used for mapping requests to controller methods, handling exceptions, and...

  • Answered by AI
  • Q3. Excpetion handler

Skills evaluated in this interview

Application Developer Interview Questions Asked at Other Companies

asked in Fujitsu
Q1. Reverse Linked List Problem Statement Given a singly linked list ... read more
asked in Oracle
Q2. Minimum Cost to Connect All Points Problem Statement Given an arr ... read more
asked in Oracle
Q3. Remove the Kth Node from the End of a Linked List You are given a ... read more
asked in Oracle
Q4. Count Subsequences Problem Statement Given an integer array ARR o ... read more
asked in Oracle
Q5. Partition Equal Subset Sum Problem Given an array ARR consisting ... read more
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
-

I applied via Campus Placement and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Assignment 

It consists of reasoning and logical.

Round 2 - Coding Test 

It consists of one easy-medium, and medium -hard coding question.

Round 3 - Technical 

(3 Questions)

  • Q1. Introduction , project
  • Q2. Project explanation, and related questions
  • Q3. Other hr questions
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
-

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. What is closure ?
  • Ans. 

    Closure is a function that has access to its own scope, as well as the scope in which it was defined.

    • Closure allows a function to access variables from its outer scope even after the outer function has finished executing.

    • It helps in maintaining state in functional programming.

    • Example: function outerFunction() { let outerVar = 'I am outer'; return function innerFunction() { console.log(outerVar); }; }

  • Answered by AI
  • Q2. What is currying ?
  • Ans. 

    Currying is a technique in functional programming where a function with multiple arguments is transformed into a sequence of nested functions, each taking a single argument.

    • Currying helps in partial application of functions.

    • It allows for creating specialized versions of general functions.

    • Example: const add = (a) => (b) => a + b; add(2)(3) returns 5.

  • Answered by AI
  • Q3. What is the difference between useCallback and usememo?
  • Ans. 

    useCallback is used to memoize functions, while useMemo is used to memoize values.

    • useCallback is used to memoize functions to prevent unnecessary re-renders.

    • useMemo is used to memoize values to prevent expensive calculations.

    • Both useCallback and useMemo accept a dependency array to determine when to recalculate the memoized value.

  • Answered by AI

Accenture interview questions for designations

 Associate Application Developer

 (18)

 Senior Application Developer

 (15)

 Mobile Application Developer

 (3)

 Software Application Developer

 (2)

 Assistant Application Developer

 (1)

 Web Application Developer

 (1)

 Oracle Application Developer

 (1)

 Java Application Developer

 (1)

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

(1 Question)

  • Q1. Related to my skills
Round 2 - Technical 

(1 Question)

  • Q1. Related to my skills
Round 3 - HR 

(1 Question)

  • Q1. Related to compensation

Get interview-ready with Top Accenture Interview Questions

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. Ready to relocate to any location

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics well

Application Developer Jobs at Accenture

View all
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Questions were from reasoning, aptitude , pseudocodes, computer networking and cloud computing

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

(2 Questions)

  • Q1. Class components life cycle
  • Q2. Function components hooks
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Simple topic like reasoning, coding-decoding, seating arrangement

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

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. What is spark and partition , suffling
  • Ans. 

    Spark is a distributed computing framework for big data processing, partitioning is dividing data into chunks, and shuffling is the process of redistributing data across partitions.

    • Spark is a fast and general-purpose cluster computing system.

    • Partitioning in Spark involves dividing data into smaller chunks to distribute work across nodes.

    • Shuffling in Spark is the process of redistributing data across partitions to perfo...

  • Answered by AI

Skills evaluated in this interview

Accenture Interview FAQs

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

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

  1. Difference between tmap & tjoin Types of connection Difference between trunca...read more
  2. What is the difference between @Controller and @RestControl...read more
  3. is the gold rate increasing or decreasing for the past 1 w...read more
How long is the Accenture Application Developer interview process?

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

Tell us how to improve this page.

Accenture Application Developer Interview Process

based on 282 interviews

4 Interview rounds

  • Technical Round
  • Coding Test Round
  • HR Round
  • Personal Interview1 Round
View more
Accenture Application Developer Salary
based on 2.8k salaries
₹3.8 L/yr - ₹17.5 L/yr
15% less than the average Application Developer Salary in India
View more details

Accenture Application Developer Reviews and Ratings

based on 272 reviews

3.9/5

Rating in categories

3.8

Skill development

3.9

Work-life balance

3.7

Salary

3.8

Job security

3.9

Company culture

3.3

Promotions

3.7

Work satisfaction

Explore 272 Reviews and Ratings
Application Developer

Mumbai

5-10 Yrs

Not Disclosed

Application Developer

Chennai

3-7 Yrs

Not Disclosed

Application Developer

Bangalore / Bengaluru

5-7 Yrs

₹ 5.2-22.36 LPA

Explore more jobs
Application Development Analyst
38.9k salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Application Development - Senior Analyst
26.2k 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.4 L/yr

Software Engineer
17.5k salaries
unlock blur

₹3.6 L/yr - ₹13.3 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