Premium Employer

i

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

Infosys Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Infosys Salesforce Developer Interview Questions and Answers

Updated 11 Mar 2025

34 Interview questions

A Salesforce Developer was asked 7mo ago
Q. Explain your projects and experience with a brief introduction.
Ans. 

Experienced Salesforce Developer with a focus on custom applications and integrations to enhance business processes.

  • Developed a custom Salesforce application for a retail client that improved inventory management by 30%.

  • Integrated Salesforce with third-party APIs to streamline customer data synchronization, reducing manual entry errors.

  • Implemented Salesforce Lightning components to enhance user experience, resulti...

A Salesforce Developer was asked 7mo ago
Q. What is your project experience in Salesforce?
Ans. 

I have extensive experience in Salesforce, focusing on custom development, integrations, and optimizing business processes.

  • Developed custom Apex classes and triggers to automate business processes, such as lead assignment and opportunity management.

  • Implemented Visualforce pages and Lightning components for enhanced user interfaces, improving user experience and engagement.

  • Integrated Salesforce with external system...

Salesforce Developer Interview Questions Asked at Other Companies

asked in Cognizant
Q1. Write a trigger to update related Opportunity records when an acc ... read more
asked in Deloitte
Q2. Write a trigger to update a contact when an account's phone numbe ... read more
asked in Infosys
Q3. How do you make the child records read-only if the parent record' ... read more
asked in Cognizant
Q4. How many ways can asynchronous code be written in Salesforce?
asked in TCS
Q5. Difference between Roles & Profiles, Difference between Workf ... read more
A Salesforce Developer was asked 7mo ago
Q. How do you debug LWC?
Ans. 

Debugging LWC involves using browser developer tools, console logs, and Salesforce Lightning Inspector.

  • Use browser developer tools to inspect elements and check for errors.

  • Utilize console logs to track variables and identify issues in the code.

  • Use Salesforce Lightning Inspector to debug server-side Apex calls and network requests.

A Salesforce Developer was asked 9mo ago
Q. Write a trigger to update StageName on Opportunity whenever the Account Active field is set to Yes
Ans. 

Trigger to update StageName on Opportunity when Account Active field is set to Yes

  • Create a trigger on Account object

  • Query for related Opportunities

  • Update StageName field on Opportunities where Account Active is Yes

A Salesforce Developer was asked 9mo ago
Q. What is a batch class?
Ans. 

Batch class is used in Salesforce to process large amounts of data asynchronously.

  • Batch class is used to handle large data volumes in Salesforce.

  • It allows you to break down a large job into smaller chunks for processing.

  • Batch class implements the Database.Batchable interface in Salesforce.

  • Example: A batch class can be used to update all account records in Salesforce.

  • Example: A batch class can be used to delete all...

A Salesforce Developer was asked 10mo ago
Q. Write a trigger to update a field on a child record to a default value if the child record is the only child of the parent.
Ans. 

Write a trigger to update a field on child record with default value if it is the only child of parent

  • Create a trigger on the child object

  • Query for the parent record and check if it has only one child record

  • If the parent has only one child, update the field on the child record with the default value

A Salesforce Developer was asked 10mo ago
Q. Write a trigger to update a field on a child record from its parent record.
Ans. 

Use trigger to update child record field from parent record

  • Create a trigger on the parent object

  • Query for the child records related to the parent record

  • Update the field on the child records with the desired value

Are these interview questions helpful?
A Salesforce Developer was asked 10mo ago
Q. Write a LWC to display contacts associated with an account.
Ans. 

LWC to display contacts associated to an account

  • Create an Apex class to fetch contacts associated with the account

  • Use Lightning Data Service to retrieve account details

  • Display contacts in a Lightning web component using HTML and CSS

A Salesforce Developer was asked 11mo ago
Q. When would a trigger be in read-only context?
Ans. 

Triggers are in read-only context when they are executed in a transaction that is read-only.

  • Triggers are in read-only context when they are executed in a transaction that is read-only.

  • This can happen when triggers are fired by a record being deleted, undeleted, merged, or when a workflow rule or process builder updates a record.

  • In read-only context, triggers cannot perform DML operations like insert, update, delet...

A Salesforce Developer was asked 11mo ago
Q. Explain composite resources in Salesforce.
Ans. 

Composite resources in Salesforce are resources that represent multiple related objects in a single request.

  • Composite resources allow you to make multiple API calls in a single request, reducing network latency and improving performance.

  • They are useful for operations that involve multiple related objects, such as creating a new account and related contacts in a single transaction.

  • Composite resources can be used wi...

Infosys Salesforce Developer Interview Experiences

35 interviews found

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 Jul 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Write a LWC to display contacts associated to an account.
  • Ans. 

    LWC to display contacts associated to an account

    • Create an Apex class to fetch contacts associated with the account

    • Use Lightning Data Service to retrieve account details

    • Display contacts in a Lightning web component using HTML and CSS

  • Answered by AI
  • Q2. Write a trigger to update field on child record from parent record.
  • Ans. 

    Use trigger to update child record field from parent record

    • Create a trigger on the parent object

    • Query for the child records related to the parent record

    • Update the field on the child records with the desired value

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Write a trigger to update a field on child record a default value if the child record is the only child of parent
  • Ans. 

    Write a trigger to update a field on child record with default value if it is the only child of parent

    • Create a trigger on the child object

    • Query for the parent record and check if it has only one child record

    • If the parent has only one child, update the field on the child record with the default value

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary Discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Infosys is not giving salary hike even if you clear all the rounds they come up with an offer of just 10%

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Oct 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. How do you debug LWC
  • Ans. 

    Debugging LWC involves using browser developer tools, console logs, and Salesforce Lightning Inspector.

    • Use browser developer tools to inspect elements and check for errors.

    • Utilize console logs to track variables and identify issues in the code.

    • Use Salesforce Lightning Inspector to debug server-side Apex calls and network requests.

  • Answered by AI
  • Q2. REST SOAP APIs differences
  • Ans. 

    REST and SOAP APIs are different in terms of architecture, communication, and data formats.

    • REST is based on HTTP protocol and uses standard methods like GET, POST, PUT, DELETE, while SOAP is a protocol-agnostic and uses XML for communication.

    • REST is lightweight and easier to use, while SOAP is more rigid and has more security features.

    • REST APIs are stateless, while SOAP APIs can maintain state between requests.

    • REST API...

  • Answered by AI

Skills evaluated in this interview

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

I appeared for an interview in Sep 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Integration, lwc, aura, vfpage, admin basics
  • Q2. Few questions about project done in past

Interview Preparation Tips

Interview preparation tips for other job seekers - stick to basics and try to asnswer to only those thing that you know accuratly
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is your project experience in salesforce
  • Ans. 

    I have extensive experience in Salesforce, focusing on custom development, integrations, and optimizing business processes.

    • Developed custom Apex classes and triggers to automate business processes, such as lead assignment and opportunity management.

    • Implemented Visualforce pages and Lightning components for enhanced user interfaces, improving user experience and engagement.

    • Integrated Salesforce with external systems usi...

  • Answered by AI
  • Q2. I said that i get a chance to work in 3 project , and it was a great experience

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Write a trigger to update StageName on Opportunity whenever the Account Active field is set to Yes
  • Ans. 

    Trigger to update StageName on Opportunity when Account Active field is set to Yes

    • Create a trigger on Account object

    • Query for related Opportunities

    • Update StageName field on Opportunities where Account Active is Yes

  • Answered by AI
  • Q2. Asynchronous Apex
  • Ans. 

    Asynchronous Apex is used to run processes in the background without user interaction.

    • Asynchronous Apex is used for long-running processes, such as callouts to external systems or batch processing.

    • It allows for better performance by not blocking the user interface while the process is running.

    • Examples include @future methods, Queueable Apex, and Batch Apex.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be positive.

Skills evaluated in this interview

Interview experience
4
Good
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 - Technical 

(2 Questions)

  • Q1. Triggers based questions
  • Q2. Lwc and security related questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain your projects and experience with brief introduction
  • Ans. 

    Experienced Salesforce Developer with a focus on custom applications and integrations to enhance business processes.

    • Developed a custom Salesforce application for a retail client that improved inventory management by 30%.

    • Integrated Salesforce with third-party APIs to streamline customer data synchronization, reducing manual entry errors.

    • Implemented Salesforce Lightning components to enhance user experience, resulting in...

  • Answered by AI
  • Q2. Asynchronous Apex
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Write a trigger to count the number of employees in Employee object

Round 2 - Coding Test 

Write LWC syntaxs for life cycle hook

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview started with coding questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Parent to child and child to parent communication in LWC
  • Ans. 

    Parent to child and child to parent communication in LWC

    • Use @api decorator to expose properties from parent to child

    • Use CustomEvent to communicate from child to parent

    • Use Lightning Message Service for communication between unrelated components

  • Answered by AI
  • Q2. Apex trigger to update lastName
  • Ans. 

    Apex trigger to update lastName

    • Create an Apex trigger on the object where lastName needs to be updated

    • Use trigger.new to access the records being updated

    • Update the lastName field with the desired value

  • Answered by AI
  • Q3. With or without in apex class
  • Ans. 

    In Apex, 'with' and 'without' are used to control the visibility of variables and methods in classes.

    • The 'with' keyword is used to specify that a method or variable is accessible within a certain context.

    • Example: 'with sharing' enforces sharing rules for the class, while 'without sharing' ignores them.

    • Using 'without sharing' can be useful for system-level operations where sharing rules should not apply.

    • It's important t...

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Question about project

What people are saying about Infosys

View All
yedabhai
5d
works at
Hyperpure
Are we not even safe in our own workplaces?
An Infosys employee was arrested for secretly recording women in the office washroom. Over 30 videos were found on his phone. This isn't just shocking, it's horrifying. Offices are meant to be safe, respectful spaces. 🙎 When will companies truly prioritize safety and surveillance in all corners, not just the visible ones?
FeedCard Image
Got a question about Infosys?
Ask anonymously on communities.

Infosys Interview FAQs

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

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

  1. How do you make the child records read only of its parent record's field is upd...read more
  2. How do you call a controllor method from javascript in visualforce pa...read more
  3. How do load both parent and child records at a time using data load...read more
How long is the Infosys Salesforce Developer interview process?

The duration of Infosys Salesforce 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

3.6/5

based on 34 interview experiences

Difficulty level

Easy 13%
Moderate 88%

Duration

Less than 2 weeks 53%
2-4 weeks 40%
4-6 weeks 7%
View more
Join Infosys Creating the next opportunity for people, businesses & communities
Infosys Salesforce Developer Salary
based on 734 salaries
₹3.3 L/yr - ₹19.6 L/yr
45% more than the average Salesforce Developer Salary in India
View more details

Infosys Salesforce Developer Reviews and Ratings

based on 37 reviews

3.4/5

Rating in categories

3.3

Skill development

3.8

Work-life balance

2.4

Salary

3.9

Job security

3.5

Company culture

2.3

Promotions

3.3

Work satisfaction

Explore 37 Reviews and Ratings
Salesforce Developer

Chennai

2-5 Yrs

₹ 3-15 LPA

Salesforce Developer

Bangalore / Bengaluru

3-5 Yrs

₹ 4-15.5 LPA

Salesforce Developer

Bangalore / Bengaluru

3-5 Yrs

₹ 4-15.5 LPA

Explore more jobs
Technology Analyst
54.7k salaries
unlock blur

₹4.8 L/yr - ₹10 L/yr

Senior Systems Engineer
53.8k salaries
unlock blur

₹2.5 L/yr - ₹6.3 L/yr

Technical Lead
35.1k salaries
unlock blur

₹9.4 L/yr - ₹16.4 L/yr

System Engineer
32.5k salaries
unlock blur

₹2.4 L/yr - ₹5.5 L/yr

Senior Associate Consultant
31.2k salaries
unlock blur

₹8.2 L/yr - ₹15 L/yr

Explore more salaries
Compare Infosys with

TCS

3.6
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Accenture

3.7
Compare
write
Share an Interview