Upload Button Icon Add office photos
Engaged Employer

i

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

Capgemini Verified Tick

Compare button icon Compare button icon Compare
3.8

based on 39.4k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Capgemini Salesforce Developer Interview Questions, Process, and Tips

Updated 6 Jan 2025

Top Capgemini Salesforce Developer Interview Questions and Answers

  • Q1. What are triggers and their use?
  • Q2. How to invoke flows - using other flows and Apex. How do we invoke an apex class from a flow and pass variables?
  • Q3. Write a trigger on account to display child contacts Write a inline lightning component anything
View all 22 questions

Capgemini Salesforce Developer Interview Experiences

18 interviews found

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

(1 Question)

  • Q1. What is salesforce?
  • Ans. 

    Salesforce is a cloud-based customer relationship management (CRM) platform that helps businesses manage their sales, customer service, marketing, and more.

    • Cloud-based CRM platform

    • Helps businesses manage sales, customer service, marketing, etc.

    • Offers various tools and features for automation and customization

    • Used by companies of all sizes across different industries

  • Answered by AI

Skills evaluated in this interview

Salesforce Developer Interview Questions & Answers

user image Dweepayan Sharma

posted on 24 Dec 2024

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

Round 1 - Technical 

(3 Questions)

  • Q1. How to invoke flows - using other flows and Apex. How do we invoke an apex class from a flow and pass variables?
  • Ans. 

    Flows can be invoked using other flows and Apex. Apex classes can be invoked from a flow by using invocable methods and passing variables as input parameters.

    • To invoke a flow from another flow, use the 'Launch Flow' element in the Flow Designer.

    • To invoke an Apex class from a flow, create an invocable method in the Apex class and annotate it with @InvocableMethod.

    • Pass variables from a flow to an Apex class by defining i...

  • Answered by AI
  • Q2. Why can't we create a master detail on contact as the child object
  • Ans. 

    Master-detail relationship on Contact as child object is not allowed due to data integrity concerns.

    • Contact is a standard object and cannot be a child object in a master-detail relationship

    • Master-detail relationships require the child object to have a lookup to the parent object

    • Contacts are often used as the primary object in many relationships, making it unsuitable as a child object

  • Answered by AI
  • Q3. What is child to parent communication in LWC?
  • Ans. 

    Child to parent communication in LWC allows a child component to communicate with its parent component.

    • Child components can dispatch custom events to communicate with parent components.

    • Parent components can listen for these custom events and handle them accordingly.

    • This communication pattern helps in passing data and triggering actions between components.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Write triggers for updating user email from contact emails.
  • Ans. 

    Write triggers to update user email from contact emails

    • Create a trigger on the User object

    • Query for related Contact records

    • Update User email field with Contact email

  • Answered by AI
  • Q2. How does LWC ensure data refresh
  • Ans. 

    LWC ensures data refresh by using Lightning Data Service and @wire decorator.

    • LWC uses Lightning Data Service to ensure data refresh without needing to write Apex code.

    • The @wire decorator in LWC allows for declarative data binding and automatic refresh when data changes.

    • LWC components can also manually refresh data using imperative Apex calls or by calling the refreshApex() method.

  • Answered by AI

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. Count all number of contacts and display on account
  • Ans. 

    Use SOQL query to count number of contacts related to an account and display on account record

    • Use a SOQL query to count the number of contacts related to the account

    • Create a formula field on the account object to display the count of contacts

    • Use a trigger to update the count of contacts on the account whenever a contact is added or removed

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Asynchronous apex scenarios
  • Ans. 

    Asynchronous apex scenarios involve executing code in the background to improve performance and user experience.

    • Asynchronous apex can be used for long-running processes, such as batch jobs or callouts to external systems.

    • It helps in avoiding governor limits by processing tasks in the background.

    • Examples include sending email notifications, updating records in bulk, and integrating with external APIs.

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is Asynchronous Apex and its types.
  • Ans. 

    Asynchronous Apex allows you to run processes in the background, separate from the main transaction.

    • Types of Asynchronous Apex include Batch Apex, Queueable Apex, and Scheduled Apex.

    • Batch Apex is used to process large amounts of data asynchronously.

    • Queueable Apex allows you to add jobs to the Apex job queue to be processed asynchronously.

    • Scheduled Apex allows you to schedule Apex to run at a specific time.

  • Answered by AI
  • Q2. How to get the client id and secret of an external app in integration
  • Ans. 

    Client id and secret can be obtained by registering the external app in the integration platform

    • Register the external app in the integration platform (e.g. Salesforce)

    • Navigate to the app's settings or configuration page

    • Look for the client id and secret provided by the integration platform

    • Use the client id and secret in the app's authentication process

  • Answered by AI

Skills evaluated in this interview

Capgemini interview questions for designations

 Senior Salesforce Developer

 (2)

 Salesforce Consultant

 (1)

 Salesforce Technical Lead

 (1)

 Developer

 (4)

 Software Developer

 (148)

 Java Developer

 (67)

 RPA Developer

 (10)

 IOS Developer

 (9)

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Technical 

(2 Questions)

  • Q1. Questions on Batch, Scheduled and future.
  • Q2. How to communicate between lwc components
  • Ans. 

    Communication between LWC components can be achieved using events, properties, and methods.

    • Use events to communicate between unrelated components

    • Use properties to pass data from parent to child components

    • Use methods to call functions in child components from parent components

  • Answered by AI

Skills evaluated in this interview

Get interview-ready with Top Capgemini Interview Questions

Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. How to call child to parents
  • Ans. 

    To call child to parents, use the $A.getCallback() method in Salesforce Lightning Component development.

    • Use $A.getCallback() method to ensure that the child component is called after the parent component.

    • Pass the child component method as a parameter to $A.getCallback() to call it from the parent component.

    • Example: $A.getCallback().call(this, function(){ childComponentMethod(); });

  • Answered by AI
  • Q2. How to connect other app in salesforce
  • Ans. 

    You can connect other apps in Salesforce using APIs and integrations.

    • Use Salesforce Connect to integrate external data sources

    • Utilize REST or SOAP APIs to connect with other apps

    • Leverage middleware tools like MuleSoft for seamless integrations

  • Answered by AI

Skills evaluated in this interview

Salesforce Developer Jobs at Capgemini

View all
Interview experience
3
Average
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed before Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Trigger on No Of Contacts Related to Account
Round 2 - One-on-one 

(1 Question)

  • Q1. Techno Managerial Questions
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. LWC, Basic Salesforce releated
  • Q2. Parent to child communication

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn all the basics and advance of LWC
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. APex Trigger, Security, LWC, Asynchronous apex
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. If account is deleted why contact record deletes
  • Ans. 

    When an account is deleted, the related contact record may also be deleted due to a cascading delete rule.

    • Contacts are often related to accounts in a one-to-many relationship

    • Cascading delete rules can be set up in the database to automatically delete related records

    • This helps maintain data integrity and prevent orphaned records

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. The manager asked about all the basic standard objects that Salesforce provides and what they represent in functional way

Capgemini Interview FAQs

How many rounds are there in Capgemini Salesforce Developer interview?
Capgemini interview process usually has 1-2 rounds. The most common rounds in the Capgemini interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for Capgemini 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 Capgemini. The most common topics and skills that interviewers at Capgemini expect are Salesforce, Apex, Javascript, Visualforce and SOAP.
What are the top questions asked in Capgemini Salesforce Developer interview?

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

  1. What are triggers and their u...read more
  2. How to invoke flows - using other flows and Apex. How do we invoke an apex cla...read more
  3. Write a trigger on account to display child contacts Write a inline lightning ...read more
How long is the Capgemini Salesforce Developer interview process?

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

Tell us how to improve this page.

Capgemini Salesforce Developer Interview Process

based on 15 interviews in last 1 year

1 Interview rounds

  • Technical Round
View more

People are getting interviews through

based on 11 Capgemini interviews
Job Portal
Recruitment Consultant
73%
9%
18% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.
Capgemini Salesforce Developer Salary
based on 778 salaries
₹2.8 L/yr - ₹12 L/yr
At par with the average Salesforce Developer Salary in India
View more details

Capgemini Salesforce Developer Reviews and Ratings

based on 52 reviews

4.1/5

Rating in categories

3.8

Skill development

4.0

Work-Life balance

3.4

Salary & Benefits

3.7

Job Security

3.8

Company culture

3.0

Promotions/Appraisal

3.6

Work Satisfaction

Explore 52 Reviews and Ratings
Salesforce Developer

Bangalore / Bengaluru

4-6 Yrs

₹ 5.1-15.2 LPA

Explore more jobs
Consultant
55.2k salaries
unlock blur

₹5.2 L/yr - ₹18 L/yr

Associate Consultant
51.9k salaries
unlock blur

₹2.9 L/yr - ₹11.8 L/yr

Senior Consultant
45.9k salaries
unlock blur

₹7.5 L/yr - ₹25 L/yr

Senior Analyst
20.5k salaries
unlock blur

₹2 L/yr - ₹7.5 L/yr

Senior Software Engineer
19.9k salaries
unlock blur

₹3.5 L/yr - ₹12.5 L/yr

Explore more salaries
Compare Capgemini with

Wipro

3.7
Compare

Accenture

3.9
Compare

Cognizant

3.8
Compare

TCS

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview