Upload Button Icon Add office photos

Accenture

Compare button icon Compare button icon Compare

Filter interviews by

Accenture Senior Application Developer Interview Questions and Answers

Updated 11 Apr 2025

11 Interview questions

A Senior Application Developer was asked 9mo ago
Q. In how many ways can we 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.

A Senior Application Developer was asked 9mo ago
Q. What is the 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

Senior Application Developer Interview Questions Asked at Other Companies

asked in Oracle
Q1. LRU Cache Design Question Design a data structure for a Least Rec ... read more
asked in Oracle
Q2. Convert a Binary Tree to its Sum Tree Given a binary tree of inte ... read more
asked in Fujitsu
Q3. What do you understand by autowiring in Spring Boot, and can you ... read more
asked in Oracle
Q4. Intersection of Linked List Problem You are provided with two sin ... read more
asked in Fujitsu
Q5. Why is Java considered platform independent, while the Java Virtu ... read more
A Senior Application Developer was asked
Q. What is the difference between inner join, left join, right join, and full outer join?
Ans. 

Inner join returns only the rows that have matching values in both tables, while left/right/full outer join returns all rows from one table and matching rows from the other table.

  • Inner join: returns rows with matching values in both tables

  • Left join: returns all rows from the left table and matching rows from the right table

  • Right join: returns all rows from the right table and matching rows from the left table

  • Full ...

A Senior Application Developer was asked
Q. How would you write a 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

What people are saying about Accenture

View All
a junior software engineer
2w
Job offer in Malaysia - legit or scam?
Hey everyone, I received a job proposal from Mindgraph for a Junior Mainframe Developer position in Malaysia (onsite). Not sure if it's a real deal. They found my resume on Naukri and the offer includes: * Experience: 3+ years on cardlink, VSAM, CICS, JCL * Location: Malaysia (Accenture client in Kuala Lumpur) * Notice: 0-60 days * Benefits: One-way ticket, 1-week stay, medical insurance, visa. Has anyone heard of Mindgraph or had a similar experience? Note : This is a permanent position with Mindgragh and you need to work with our client Accenture - Malaysia (Kaula Lumpur) & we will provide one way Air Ticket from India - Malaysia, 1 Week Accommodation, Medical Insurance and will take care of the Visa process also. Any insights would be appreciated!
Got a question about Accenture?
Ask anonymously on communities.
🔥 Asked by recruiter 2 times
A Senior Application Developer was asked
Q. What is the 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 ...

A Senior Application Developer was asked
Q. How do you swap the values of two variables without using a 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)

A Senior Application Developer was asked
Q. How do you manage components in a React application with 40 or more pages? What is 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

Are these interview questions helpful?
A Senior Application Developer was asked
Q. 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

A Senior Application Developer was asked
Q. Describe the most challenging scenario you have implemented and its solution.
Ans. 

Implemented a complex data migration from legacy system to new system

  • Identified all data sources and mapped them to new system

  • Developed custom scripts to transform and validate data

  • Performed multiple test runs to ensure data integrity

  • Coordinated with stakeholders to ensure smooth transition

A Senior Application Developer was asked 11mo ago
Q. 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

Accenture Senior Application Developer Interview Experiences

16 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 & Answers

user image SHIVA KUMAR RAMASAMY

posted on 11 Apr 2025

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Kind of SUPPORT levels to implementation
  • Ans. 

    Support levels in implementation ensure smooth transitions and effective problem resolution during software deployment.

    • Pre-Implementation Support: Involves training and documentation to prepare users for the new system, such as user manuals and training sessions.

    • Go-Live Support: Provides immediate assistance during the launch phase, including on-site support teams to address any issues that arise.

    • Post-Implementation Su...

  • Answered by AI
  • Q2. Developers support to routine
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
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
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

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.

Overall Interview Experience Rating

4.5/5

based on 14 interview experiences

Difficulty level

Easy 36%
Moderate 64%

Duration

Less than 2 weeks 82%
2-4 weeks 9%
4-6 weeks 9%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Capgemini Interview Questions
3.7
 • 5k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.8
 • 3.4k Interviews
IBM Interview Questions
4.0
 • 2.5k Interviews
DXC Technology Interview Questions
3.7
 • 836 Interviews
View all
Accenture Senior Application Developer Salary
based on 1.4k salaries
₹7 L/yr - ₹18 L/yr
21% less than the average Senior Application Developer Salary in India
View more details

Accenture Senior Application Developer Reviews and Ratings

based on 79 reviews

4.1/5

Rating in categories

3.9

Skill development

3.9

Work-life balance

3.5

Salary

3.9

Job security

4.0

Company culture

3.2

Promotions

3.8

Work satisfaction

Explore 79 Reviews and Ratings
Application Development Analyst
39.3k salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Application Development - Senior Analyst
27.7k salaries
unlock blur

₹7 L/yr - ₹20.5 L/yr

Team Lead
26.5k salaries
unlock blur

₹7.3 L/yr - ₹26.5 L/yr

Senior Analyst
19.4k salaries
unlock blur

₹5.6 L/yr - ₹21.3 L/yr

Senior Software Engineer
18.5k salaries
unlock blur

₹6.2 L/yr - ₹21.1 L/yr

Explore more salaries
Compare Accenture with

TCS

3.6
Compare

Cognizant

3.7
Compare

Capgemini

3.7
Compare

Infosys

3.6
Compare
write
Share an Interview