Upload Button Icon Add office photos

Filter interviews by

Accenture Senior Application Developer Interview Questions, Process, and Tips

Updated 14 Oct 2024

Top Accenture Senior Application Developer Interview Questions and Answers

  • Q1. How do you orient some components in react with 40 or more pages? whats your approach?
  • Q2. Most tricky scenario that I have implemented and what was the solution
  • Q3. In how many ways we can communicate in LWC and what are they
View all 10 questions

Accenture Senior Application Developer Interview Experiences

15 interviews found

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Bascis of Angular - Routing, version upgrade, DI ,AOT JIT , FORMS , Services , Observable, Promise , lifecyclle

Interview Preparation Tips

Interview preparation tips for other job seekers - Just do basics of Angular , JS, html , css
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(5 Questions)

  • Q1. Swap the value of two variables without using the third variable
  • Ans. 

    To swap the value of two variables without using a third variable, use arithmetic operations.

    • Use addition and subtraction to swap values

    • Example: a = 5, b = 10. a = a + b (a = 15), b = a - b (b = 5), a = a - b (a = 10)

  • Answered by AI
  • Q2. Basic javascript - Promises, Callbacks, difference in event handling in javascript & react.js
  • Ans. Synthetic events are present in React, syntax differences
  • Answered Anonymously
  • Q3. What is Context API
  • Ans. 

    Context API is a feature in React that allows sharing data between components without having to pass props through every level of the component tree.

    • Context API provides a way to pass data through the component tree without having to pass props down manually at every level.

    • It is particularly useful for passing down global data like themes, user authentication, or language preferences.

    • Context API consists of three main ...

  • Answered by AI
  • Q4. How do you orient some components in react with 40 or more pages? whats your approach?
  • Ans. 

    Use a routing library like React Router to manage navigation and organize components into separate pages.

    • Utilize React Router to set up routes for each page and handle navigation

    • Organize components into separate folders based on their functionality or page they belong to

    • Consider lazy loading components to improve performance, especially with a large number of pages

  • Answered by AI
  • Q5. How would you optimize an application?
  • Ans. 

    Optimizing an application involves identifying and resolving performance bottlenecks to improve efficiency and user experience.

    • Identify and address slow database queries or inefficient code

    • Implement caching mechanisms to reduce load times

    • Optimize images and assets to reduce file sizes

    • Utilize asynchronous processing to improve responsiveness

    • Profile and analyze code to identify areas for improvement

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, prepare well, strengthen your base knowledge related to that Technologies for which you're applying for the jobs.

Skills evaluated in this interview

Senior Application Developer Interview Questions Asked at Other Companies

asked in Oracle
Q1. Intersection of Linked ListYou are given two Singly Linked List o ... read more
asked in Oracle
Q2. LRU Cache ImplementationDesign and implement a data structure for ... read more
asked in Oracle
Q3. Convert a binary tree to its sum treeGiven a binary tree of integ ... read more
asked in Fujitsu
Q4. Spring Boot QuestionWhat do you understand by auto wiring and nam ... read more
asked in Fujitsu
Q5. OOPS QuestionHow is an abstract class different from an interface ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

I was asked about ReactJS and Node JS questions and 3 coding questions

Interview Preparation Tips

Topics to prepare for Accenture Senior Application Developer interview:
  • MERN STACK
Interview preparation tips for other job seekers - Good
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic java questions
  • Q2. Stream api and lambda

Accenture interview questions for designations

 Application Developer

 (255)

 Associate Application Developer

 (18)

 Mobile Application Developer

 (3)

 Software Application Developer

 (2)

 Web Application Developer

 (1)

 Oracle Application Developer

 (1)

 .NET Application Developer

 (1)

 Assistant Application Developer

 (1)

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. About Front End technology & Javascript
  • Q2. Angular Basics to Advanced Concept

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 applied via Company Website and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Difference between== and ==== in LWC.
  • Ans. 

    In LWC, == is used for loose equality comparison while ==== is used for strict equality comparison.

    • == is used for comparing values without considering data types

    • === is used for comparing values while also considering data types

    • Example: '1' == 1 will return true, but '1' === 1 will return false

  • Answered by AI
  • Q2. In how many ways we can communicate in LWC and what are they
  • Ans. 

    There are three ways to communicate in LWC: event communication, public properties, and method calls.

    • Event communication: Components can communicate by firing and handling events.

    • Public properties: Components can communicate by passing data through public properties.

    • Method calls: Components can communicate by calling methods on other components.

  • 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 Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

It was comparatively easy round and not that much tough

Interview Preparation Tips

Interview preparation tips for other job seekers - Try your luck
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. 16 fields of pricing
  • Ans. 

    The 16 fields of pricing refer to the different factors that influence the pricing of a product or service.

    • Cost of production

    • Competitor pricing

    • Market demand

    • Profit margin

    • Economic conditions

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

I applied via Referral and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Write test suite for a login form
  • Ans. 

    Test suite for a login form

    • Test for valid username and password

    • Test for invalid username and password

    • Test for empty username or password field

    • Test for special characters in username or password

    • Test for maximum character limit in username and password fields

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Sep 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. Questions related to what I have done so far and basic fiori, JavaScript, CSS, BTP questions
Round 3 - HR 

(1 Question)

  • Q1. HR discussion, background check

Interview Preparation Tips

Interview preparation tips for other job seekers - Smooth Interview Process

Accenture Interview FAQs

How many rounds are there in Accenture Senior Application Developer interview?
Accenture interview process usually has 1-2 rounds. The most common rounds in the Accenture interview process are Technical, HR and Coding Test.
What are the top questions asked in Accenture Senior Application Developer interview?

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

  1. How do you orient some components in react with 40 or more pages? whats your ap...read more
  2. Most tricky scenario that I have implemented and what was the solut...read more
  3. In how many ways we can communicate in LWC and what are t...read more
How long is the Accenture Senior Application Developer interview process?

The duration of Accenture Senior 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 Senior Application Developer Interview Process

based on 11 interviews in last 1 year

1 Interview rounds

  • Technical Round
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
Accenture Senior Application Developer Salary
based on 1.4k salaries
₹6.9 L/yr - ₹21.7 L/yr
16% less than the average Senior Application Developer Salary in India
View more details

Accenture Senior Application Developer Reviews and Ratings

based on 66 reviews

4.4/5

Rating in categories

4.2

Skill development

4.1

Work-life balance

3.9

Salary

4.3

Job security

4.4

Company culture

3.9

Promotions

4.2

Work satisfaction

Explore 66 Reviews and Ratings
Application Development Analyst
38.9k salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Application Development - Senior Analyst
27.1k salaries
unlock blur

₹6.8 L/yr - ₹20.2 L/yr

Team Lead
24.2k salaries
unlock blur

₹7 L/yr - ₹25.2 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
Did you find this page helpful?
Yes No
write
Share an Interview