Upload Button Icon Add office photos

Accenture

Compare button icon Compare button icon Compare

Filter interviews by

Accenture Salesforce Developer Interview Questions, Process, and Tips

Updated 3 Mar 2025

Top Accenture Salesforce Developer Interview Questions and Answers

View all 19 questions

Accenture Salesforce Developer Interview Experiences

37 interviews found

Salesforce Developer Interview Questions & Answers

user image Ambarish Pandey

posted on 3 Mar 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What can you tell me about your projects involving Salesforce?
  • Ans. 

    I have worked on multiple projects involving Salesforce customization, integration, and automation.

    • Implemented custom objects, fields, and validation rules to meet specific business requirements

    • Developed Apex triggers and classes to automate processes and workflows

    • Integrated Salesforce with external systems using REST and SOAP APIs

    • Created custom reports and dashboards for data analysis and visualization

  • Answered by AI
  • Q2. Basic concepts of Salesforce Lightning Web Components (LWC)?
  • Ans. 

    Salesforce Lightning Web Components (LWC) are a modern UI framework to develop web components for Salesforce applications.

    • LWC uses modern web standards like ES6, Shadow DOM, and Custom Elements.

    • LWC is built on top of the Web Components standard, allowing for reusability and encapsulation.

    • LWC provides a reactive programming model with a one-way data binding approach.

    • LWC can interact with Salesforce data and metadata usi

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Basic Apex coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Technical Scenerio in LWC
  • Q2. Basic sceneries in Apex sharing
  • Ans. 

    Apex sharing allows developers to control access to records based on criteria.

    • Apex sharing rules can be used to extend sharing access beyond the organization-wide defaults.

    • Apex managed sharing allows developers to programmatically share records with specific users or groups.

    • Sharing reasons can be used to define the reason for sharing a record in Apex.

    • Apex sharing can be enforced using the 'with sharing' keyword in Apex

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep Basic of Salesforce admin and development

Salesforce Developer Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Write a trigger to update contact when accounts phone changed.
asked in Infosys
Q2. How do you make the child records read only of its parent record' ... read more
asked in TCS
Q3. Difference between Roles & Profiles, Difference between Workf ... read more
asked in Infosys
Q4. How do load both parent and child records at a time using data lo ... read more
asked in Infosys
Q5. How do you call a controllor method from javascript in visualforc ... read more
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Admin, Apex, LWC, Data Model and Security.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
-

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

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between pub-sub and LMS
  • Q2. Certificate management

Accenture interview questions for designations

 Senior Salesforce Developer

 (7)

 Salesforce Administrator and Developer

 (1)

 Salesforce Marketing Cloud Developer

 (1)

 Salesforce Consultant

 (3)

 Salesforce Administrator

 (3)

 Salesforce Developer Lead

 (2)

 Salesforce Application Developer

 (1)

 Developer

 (9)

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

(2 Questions)

  • Q1. Why we make Seealldata=false
  • Q2. Why we use @api decorator

Get interview-ready with Top Accenture Interview Questions

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

(3 Questions)

  • Q1. In LWC, explain lifecycle hooks
  • Ans. 

    Lifecycle hooks in LWC are methods that allow developers to hook into the lifecycle of a component.

    • ConnectedCallback - called when a component is inserted into the DOM

    • RenderedCallback - called after a component's template has been rendered

    • DisconnectedCallback - called when a component is removed from the DOM

    • ErrorCallback - called when an error occurs in a component

    • Example: connectedCallback() { console.log('Component c

  • Answered by AI
  • Q2. What is the difference between Batchable and Queueable Apex?
  • Ans. 

    Batchable Apex is used for processing large data sets in smaller chunks, while Queueable Apex is used for asynchronous processing of single job.

    • Batchable Apex is used for processing large data sets in smaller chunks

    • Queueable Apex is used for asynchronous processing of single job

    • Batchable Apex can be scheduled to run at specific times, while Queueable Apex runs immediately after being added to the queue

    • Batchable Apex us...

  • Answered by AI
  • Q3. Which data type is not allowed in future method?
  • Ans. 

    Future methods do not allow sObjects as data type.

    • Future methods in Salesforce do not allow sObjects as parameters.

    • You cannot pass an sObject, such as Account or Contact, as a parameter to a future method.

    • Instead, you can pass the sObject ID and query for the sObject in the future method.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(1 Question)

  • Q1. Difference between synchronous and asynchronous methods in apex
  • Ans. 

    Synchronous methods execute in a sequential order, while asynchronous methods allow for parallel execution.

    • Synchronous methods execute in a sequential order, blocking the execution until the method is completed.

    • Asynchronous methods allow for parallel execution, enabling other processes to continue while the method runs in the background.

    • Synchronous methods are suitable for tasks that require immediate results, while as...

  • Answered by AI

Skills evaluated in this interview

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 Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Lifecycle hooks
  • Q2. Lightning message service
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Recursive trigger
  • Q2. Roll up summary trigger
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
No response

I applied via Approached by Company and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Call parent to child in lwc
  • Ans. 

    To call parent to child in LWC, use @api decorator in child component to expose a public property and then use the property in parent component.

    • Use @api decorator in child component to expose a public property

    • Pass data from parent to child component using the public property

    • Access the data in the child component using the public property

  • Answered by AI
  • Q2. Trigger scenarios

Skills evaluated in this interview

Accenture Interview FAQs

How many rounds are there in Accenture Salesforce Developer interview?
Accenture interview process usually has 1-2 rounds. The most common rounds in the Accenture interview process are Technical, Resume Shortlist and Coding Test.
How to prepare for Accenture Salesforce 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 Salesforce, Lightning, Apex, Triggers and Customization.
What are the top questions asked in Accenture Salesforce Developer interview?

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

  1. write a batch code to update account rat...read more
  2. what is quable apex in salesfo...read more
  3. tirgger to update shipping addr...read more
How long is the Accenture Salesforce Developer interview process?

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

Tell us how to improve this page.

Accenture Salesforce Developer Interview Process

based on 38 interviews

2 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
View more
Accenture Salesforce Developer Salary
based on 2k salaries
₹2.8 L/yr - ₹12 L/yr
At par with the average Salesforce Developer Salary in India
View more details

Accenture Salesforce Developer Reviews and Ratings

based on 118 reviews

3.9/5

Rating in categories

3.8

Skill development

3.6

Work-life balance

3.3

Salary

3.8

Job security

3.8

Company culture

3.0

Promotions

3.5

Work satisfaction

Explore 118 Reviews and Ratings
Application Development Analyst
39k salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Application Development - Senior Analyst
27.4k salaries
unlock blur

₹6.9 L/yr - ₹20.2 L/yr

Team Lead
24.6k salaries
unlock blur

₹7.1 L/yr - ₹26 L/yr

Senior Software Engineer
18.2k salaries
unlock blur

₹6 L/yr - ₹20 L/yr

Senior Analyst
17.7k salaries
unlock blur

₹5.5 L/yr - ₹21.3 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