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

Filter interviews by

Nagarro Salesforce Developer Interview Questions and Answers

Updated 8 May 2024

Nagarro Salesforce Developer Interview Experiences

5 interviews found

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

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

Round 1 - Aptitude Test 

20 mins for 30 ques were there.

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

I applied via Naukri.com and was interviewed in Feb 2023. There were 4 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 

Basic apti questions. search for nagarro aptitude test on youtube and prepare for it.

Round 3 - Technical 

(1 Question)

  • Q1. Admin related questions: basic concepts should be clear and 1 coding question asking to write a simple class in Apex Read: OWD, Batch Apex, Wrapper Class concept, can you call another class in batch apex,...
Round 4 - HR 

(1 Question)

  • Q1. Where do you want to switch, where do you see yourself in 5 years, about yourself etc

Interview Preparation Tips

Topics to prepare for Nagarro Salesforce Developer interview:
  • lwc
  • batch apex
  • apex
  • wrapper class
  • sharing model
Interview preparation tips for other job seekers - Its pretty simple if your concepts are clear and if I can get a placement offer so can you!

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

I applied via Naukri.com and was interviewed in Oct 2022. There were 4 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 

Its easy 30 question in 20 min

Round 3 - Technical 

(1 Question)

  • Q1. Normal admin related question.
Round 4 - Technical 

(1 Question)

  • Q1. All coding level question

Interview Preparation Tips

Interview preparation tips for other job seekers - Company process is very good I m rejected at third round...

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

Interview Questionnaire 

3 Questions

  • Q1. Trigger scenario based question
  • Q2. What happens if we don't give required fields while inserting data through insert or database.insert
  • Ans. 

    If required fields are not given while inserting data through insert or database.insert, an error is thrown.

    • An error message is displayed indicating which fields are required.

    • The record is not inserted into the database.

    • The transaction is rolled back.

    • The error can be caught and handled in the code.

    • Validation rules can also prevent the insertion of records with missing required fields.

  • Answered by AI
  • Q3. How to display list of items in LWC
  • Ans. 

    To display list of items in LWC, use 'template for:each' directive and iterate over the array of items.

    • Use 'template for:each' directive

    • Iterate over the array of items

    • Use 'template for:each' index='index' key='key' to avoid rendering issues

    • Use 'template if:true' directive to conditionally render items

    • Example: