Upload Button Icon Add office photos
Engaged Employer

i

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

Nagarro Verified Tick

Compare button icon Compare button icon Compare
4.0

based on 4k Reviews

Filter interviews by

Nagarro Salesforce Commerce Cloud Developer Interview Questions, Process, and Tips

Updated 4 Aug 2023

Nagarro Salesforce Commerce Cloud Developer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Referral and was interviewed in Jul 2023. There were 3 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 - Aptitude Test 

Abstract reasoning, ages, logical reasoning, decision making

Round 3 - Technical 

(5 Questions)

  • Q1. What is middleware and event emitters?
  • Ans. 

    Middleware is software that acts as a bridge between different applications or systems. Event emitters are objects that emit events that can be listened to and acted upon.

    • Middleware is used to handle communication between different systems or applications.

    • It can modify or enhance the data being passed between systems.

    • Event emitters are objects in programming that emit events which can be listened to by other parts of t...

  • Answered by AI
  • Q2. How does caching works in SFCC?
  • Ans. 

    Caching in SFCC improves website performance by storing frequently accessed data in memory.

    • Caching in SFCC stores frequently accessed data in memory to improve website performance.

    • It reduces the need to fetch data from the database every time a request is made.

    • SFCC provides various caching mechanisms like object caching, page caching, and content slot caching.

    • Developers can configure caching settings in Business Manage...

  • Answered by AI
  • Q3. What is the difference between contentasset and content slots?
  • Ans. 

    Contentasset stores reusable content while content slots define where content is displayed on a page.

    • Contentasset stores reusable content like images, videos, and text.

    • Content slots define where content is displayed on a page, such as a banner or product description section.

    • Contentassets can be reused across multiple content slots on different pages.

  • Answered by AI
  • Q4. Explain how hooks works?
  • Ans. 

    Hooks in Salesforce Commerce Cloud allow developers to customize and extend the platform's functionality.

    • Hooks are JavaScript functions that are triggered at specific points in the Commerce Cloud platform's execution flow.

    • Developers can use hooks to modify or extend the behavior of standard platform functionality.

    • Hooks can be used to add custom logic, integrate with external systems, or enhance user experience.

    • Examples...

  • Answered by AI
  • Q5. How do we create a custom job step?
  • Ans. 

    To create a custom job step in Salesforce Commerce Cloud, you can define a custom job step class and configure it in the job XML file.

    • Create a custom job step class by extending the AbstractJobStep class.

    • Implement the execute method in the custom job step class to define the logic for the job step.

    • Configure the custom job step in the job XML file by specifying the class name and any required parameters.

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

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

Round 1 - Technical 

(6 Questions)

  • Q1. Can we call future method from batch class
  • Ans. 

    Yes, future methods can be called from a batch class in Salesforce.

    • Future methods can be called from batch classes to perform asynchronous processing.

    • This can be useful for offloading long-running tasks to future methods to avoid hitting governor limits.

    • Example: Calling a future method from a batch class to update records in Salesforce asynchronously.

  • Answered by AI
  • Q2. What's the use of @track decorator. Is it mandatory to explicitly use it? If yes, for which use case?
  • Ans. 

    The @track decorator in Salesforce is used to track changes to a property in a Lightning web component.

    • Used to make a property reactive and trigger re-renders when its value changes

    • Not mandatory but recommended for properties that need to be reactive

    • Use @track when you want changes to a property to be reflected in the UI

  • Answered by AI
  • Q3. When does APEX CPU Limit Exceeded error happens. What's the best practice to avoid getting this error?
  • Ans. 

    APEX CPU Limit Exceeded error happens when code consumes too much CPU time. Best practices include optimizing code, reducing loops, and using asynchronous processing.

    • Avoid using nested loops and optimize code for better performance

    • Use asynchronous processing like @future or Queueable to offload CPU intensive tasks

    • Limit the use of SOQL queries inside loops to reduce CPU consumption

  • Answered by AI
  • Q4. When does Mixed DML Exception occurs?
  • Ans. 

    Mixed DML Exception occurs when DML operations are performed on setup and non-setup objects in a single transaction.

    • Occurs when DML operations are performed on both setup and non-setup objects in a single transaction

    • Setup objects include User, Profile, PermissionSet, etc.

    • Non-setup objects include custom objects, standard objects like Account, Contact, etc.

  • Answered by AI
  • Q5. Debug the following code: var a=10; function abc() { console.log(a); var a=2; } abc();
  • Ans. 

    The code will output 'undefined' because variable 'a' is hoisted within the function.

    • Variable 'a' is hoisted to the top of the function scope, so when 'console.log(a)' is called, 'a' is undefined.

    • To fix this, move the declaration of 'var a=2;' above the 'console.log(a);' statement.

  • Answered by AI
  • Q6. Write a SOQL query to fetch the values of description field from the Account. Why does "the description field cannot be filtered in the query call"?
  • Ans. 

    SOQL query to fetch description field from Account and reason for inability to filter

    • SOQL query: SELECT Description FROM Account

    • Description field is not filterable because it is a long text field

    • Long text fields cannot be filtered in SOQL queries

  • 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 Recruitment Consulltant and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Resume shortlist
Round 2 - Technical 

(4 Questions)

  • Q1. Decorators in lwc
  • Ans. 

    Decorators in LWC are a way to enhance the functionality of a component by adding metadata and modifying behavior.

    • Decorators are used to modify the behavior of properties, methods, and getters/setters in LWC.

    • They are defined using the @ symbol followed by the decorator name.

    • Some commonly used decorators in LWC are @api, @track, @wire, and @track.

    • The @api decorator allows a property to be accessed by parent components.

    • T...

  • Answered by AI
  • Q2. User need to choose the profile before login to salesforce
  • Q3. How manual sharing works and how to see manually shared rercords
  • Ans. 

    Manual sharing allows users to manually grant access to records. To see manually shared records, use the 'Sharing' button on the record detail page.

    • Manual sharing is a feature in Salesforce that allows users to manually grant access to records.

    • It is useful when users need to share specific records with other users or groups.

    • To manually share a record, users can click on the 'Sharing' button on the record detail page.

    • Fr...

  • Answered by AI
  • Q4. Write trigger on opportunity to sum of total opps and populate on account sumofopps field
  • Ans. 

    Write a trigger on Opportunity to calculate the sum of total opportunities and populate it on the Account's 'SumOfOpps' field.

    • Create a trigger on the Opportunity object

    • Use an aggregate query to calculate the sum of the 'Amount' field on all related Opportunities

    • Update the 'SumOfOpps' field on the related Account with the calculated sum

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Write trigger , there are 3 objects, a is parent, b child, c is grand child, when grand child updated update grand child desc on a object desc
  • Ans. 

    Write a trigger to update the description field on the parent object when the grandchild object is updated.

    • Create a trigger on the grandchild object

    • Use a SOQL query to retrieve the parent object

    • Update the description field on the parent object with the grandchild's description

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

1) Trigger to update custom field totalamount__c on account object when opportunity record is updated or inserted . account.totalamount_c is sum of amount value of related opportunity .

2) write apex code to remove duplicate string from array of string .

Interview Preparation Tips

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

I applied via Naukri.com and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Apex trigger, SOQL, security model, integration, lwc
  • Q2. Lms, flow, asynchronous apex
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Coding Test 

Managerial questions about all technical questions as well

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

I applied via Naukri.com and was interviewed in Nov 2022. There were 3 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 - Case Study 

Based on your work done in the past

Round 3 - HR 

(2 Questions)

  • Q1. Basic details and salary composition
  • Q2. Bonus and variable amount details
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Knowledge and scenario based questions that involved coding.
Round 2 - Behavioral 

(1 Question)

  • Q1. Design based on OOPs and mostly looking for culture fit.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with concepts as generally the questions are scenario based where the application of knowledge matters.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Technical questions will be based on the role you apply
Round 2 - One-on-one 

(1 Question)

  • Q1. It was a managerial round and it was about previous work experience
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 Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Salesforce basics
  • Q2. Automation xpaths, short codes in java, SQL
Round 2 - HR 

(1 Question)

  • Q1. Questions on xpaths parent child following

Nagarro Interview FAQs

How many rounds are there in Nagarro Salesforce Commerce Cloud Developer interview?
Nagarro interview process usually has 3 rounds. The most common rounds in the Nagarro interview process are Resume Shortlist, Aptitude Test and Technical.
What are the top questions asked in Nagarro Salesforce Commerce Cloud Developer interview?

Some of the top questions asked at the Nagarro Salesforce Commerce Cloud Developer interview -

  1. What is the difference between contentasset and content slo...read more
  2. What is middleware and event emitte...read more
  3. How does caching works in SF...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Nagarro interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Accenture Interview Questions
3.9
 • 7.9k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.9
 • 2.8k Interviews
DXC Technology Interview Questions
3.7
 • 794 Interviews
View all
Associate Staff Engineer
2.8k salaries
unlock blur

₹10 L/yr - ₹35.2 L/yr

Staff Engineer
2.8k salaries
unlock blur

₹14.5 L/yr - ₹43.2 L/yr

Senior Engineer
2.3k salaries
unlock blur

₹6.5 L/yr - ₹25 L/yr

Senior Software Engineer
1.1k salaries
unlock blur

₹7.5 L/yr - ₹31 L/yr

Software Engineer
933 salaries
unlock blur

₹3 L/yr - ₹12.2 L/yr

Explore more salaries
Compare Nagarro with

Deloitte

3.8
Compare

Cognizant

3.8
Compare

TCS

3.7
Compare

Accenture

3.9
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