Upload Button Icon Add office photos
Premium Employer

i

This company page is being actively managed by Deloitte Team. If you also belong to the team, you can get access from here

Deloitte Verified Tick

Compare button icon Compare button icon Compare
3.8

based on 17.1k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Deloitte Salesforce Developer Interview Questions, Process, and Tips

Updated 20 Jan 2025

Top Deloitte Salesforce Developer Interview Questions and Answers

View all 16 questions

Deloitte Salesforce Developer Interview Experiences

19 interviews found

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Question related to flow, security
  • Q2. Asked to write trigger related to after update
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. What is the use of @track

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewer was not good, he didn’t let me know if my response was correct or wrong, he didn’t give opportunity to display the other ways of doing it or why did we chose the approach we chose, behaved kind of like know-it-all

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
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Nov 2023. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Questions on baisc salesforce from every aspects
Round 2 - Technical 

(1 Question)

  • Q1. Same as technical 1
Round 3 - Behavioral 

(1 Question)

  • Q1. Logic question, project related questions
Round 4 - HR 

(1 Question)

  • Q1. Salary discussed
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Jul 2023. There were 5 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 - Coding Test 

1 hr of multiple choices questions all technical questions salesforce admin and development

Round 3 - Technical 

(1 Question)

  • Q1. Scenario based questions
Round 4 - Technical 

(2 Questions)

  • Q1. Scenario based questions on profile
  • Q2. Difference between queable and feature apex
  • Ans. 

    Queueable is used for asynchronous processing while future apex is used for executing code in a separate thread.

    • Queueable is used for complex, long-running processes that can be split into multiple jobs.

    • Future apex is used for short, quick processes that need to be executed in a separate thread.

    • Queueable jobs can be chained together to run in a specific order.

    • Future apex methods are limited in terms of governor limits

  • Answered by AI
Round 5 - Technical 

(2 Questions)

  • Q1. Scenario how to create 1 to 1 relationship
  • Ans. 

    To create a 1 to 1 relationship in Salesforce, use a lookup field on the child object pointing to the parent object.

    • Create a lookup field on the child object that references the parent object.

    • Ensure that the lookup field has a unique constraint to enforce the 1 to 1 relationship.

    • Use validation rules or triggers to prevent multiple child records from being linked to the same parent record.

  • Answered by AI
  • Q2. Managerial round

Interview Preparation Tips

Interview preparation tips for other job seekers - All are scenario based questions

Deloitte interview questions for designations

 Salesforce Consultant

 (11)

 Salesforce Administrator

 (1)

 Developer

 (1)

 Salesforce Analyst

 (1)

 Software Developer

 (43)

 Java Developer

 (19)

 Application Developer

 (4)

 IOS Developer

 (3)

Salesforce Developer Interview Questions & Answers

user image Haneef Mohamed

posted on 18 Mar 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Basic Salesforce admin, vf pages ,aura, lwc, integration and told to write trigger for grand parent type scenario

Get interview-ready with Top Deloitte Interview Questions

Salesforce Developer Interview Questions & Answers

user image Girish Mandaogade

posted on 12 Feb 2024

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

(2 Questions)

  • Q1. What is profile
  • Ans. 

    A profile in Salesforce is a collection of settings and permissions that determine what a user can access and do within the system.

    • Profiles control the object, field, and record-level permissions for users.

    • Profiles also determine the user interface settings, such as page layouts, record types, and tab visibility.

    • Multiple users can be assigned the same profile, allowing them to have the same access and permissions.

    • Profi...

  • Answered by AI
  • Q2. What are interfaces we have in Salesforce
  • Ans. 

    Interfaces in Salesforce provide a way to define a contract for classes to implement specific methods and behaviors.

    • Interfaces define a set of methods that a class must implement

    • Interfaces can be used to achieve polymorphism in Apex

    • Interfaces can be used to enforce a common behavior across multiple classes

    • Interfaces can be used to create loosely coupled code

    • Examples of interfaces in Salesforce include Database.Batchabl...

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(1 Question)

  • Q1. LWC Parent to child Communication. Child to Parent Communication Unrelated Component Communication
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Apex Trigger to count no of Contacts in a particular account
  • Ans. 

    Use an Apex Trigger to count the number of Contacts in a specific Account.

    • Create an Apex Trigger on the Contact object.

    • Query for Contacts related to the specific Account.

    • Use a SOQL query to count the number of Contacts.

    • Update a custom field on the Account with the count.

  • Answered by AI
  • Q2. Different Values of Apex Context variables in different scenarios
  • Ans. 

    Apex context variables hold different values based on the scenario in Salesforce development.

    • Trigger.new and Trigger.old contain new and old versions of records in trigger context

    • System.isBatch() returns true in batch context

    • System.isFuture() returns true in future method context

    • System.isScheduled() returns true in scheduled job context

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on Apex Trigger

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Technical 

(1 Question)

  • Q1. Trigger to update contact phone when account is changed. OWD Profile and permission set Batch Apex
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 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What are security measures in Salesforce? How to import bulk data? Types of flows Best practices in code Javascript is must They will ask to write code by sharing screen.
  • Ans. 

    Security measures in Salesforce include user authentication, data encryption, IP restrictions, and field-level security.

    • User authentication methods like password policies, two-factor authentication, and single sign-on are crucial for securing access to Salesforce.

    • Data encryption ensures that sensitive information is protected both at rest and in transit.

    • IP restrictions can be set to control access to Salesforce from sp...

  • Answered by AI

Skills evaluated in this interview

Deloitte Interview FAQs

How many rounds are there in Deloitte Salesforce Developer interview?
Deloitte interview process usually has 1-2 rounds. The most common rounds in the Deloitte interview process are Technical, Resume Shortlist and Coding Test.
How to prepare for Deloitte 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 Deloitte. The most common topics and skills that interviewers at Deloitte expect are Apex, Salesforce, Lightning, SFDC and Salesforce CRM.
What are the top questions asked in Deloitte Salesforce Developer interview?

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

  1. Write a trigger to update contact when accounts phone chang...read more
  2. Scenario how to create 1 to 1 relations...read more
  3. Fetch data in table from a...read more

Tell us how to improve this page.

Deloitte Salesforce Developer Interview Process

based on 10 interviews in last 1 year

1 Interview rounds

  • Technical Round
View more
Deloitte Salesforce Developer Salary
based on 589 salaries
₹4.5 L/yr - ₹18.1 L/yr
48% more than the average Salesforce Developer Salary in India
View more details

Deloitte Salesforce Developer Reviews and Ratings

based on 34 reviews

4.0/5

Rating in categories

3.8

Skill development

3.5

Work-life balance

4.1

Salary

4.1

Job security

4.2

Company culture

3.7

Promotions

3.8

Work satisfaction

Explore 34 Reviews and Ratings
Consultant
32.9k salaries
unlock blur

₹6.2 L/yr - ₹23 L/yr

Senior Consultant
20.7k salaries
unlock blur

₹11 L/yr - ₹42 L/yr

Analyst
13.9k salaries
unlock blur

₹3.8 L/yr - ₹12.6 L/yr

Assistant Manager
10k salaries
unlock blur

₹7.7 L/yr - ₹24 L/yr

Manager
7k salaries
unlock blur

₹15.7 L/yr - ₹52 L/yr

Explore more salaries
Compare Deloitte with

Accenture

3.9
Compare

PwC

3.4
Compare

Ernst & Young

3.4
Compare

Cognizant

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview