Premium Employer

i

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

Persistent Systems Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Persistent Systems Senior Salesforce Developer Interview Questions and Answers

Updated 9 Oct 2023

Persistent Systems Senior Salesforce Developer Interview Experiences

2 interviews found

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

I was interviewed before Mar 2022.

Round 1 - One-on-one 

(1 Question)

  • Q1. 1. Salesforce Admin like profile, permission sets, sharing Derris, owd, junction object 2. In apex : Asynchronous apex, with sharing and without sharing keyword, order of execution, governor limits 3.In Lw...
Round 2 - Technical 

(1 Question)

  • Q1. Same questions as above
Round 3 - HR 

(1 Question)

  • Q1. Normal JR questions

Interview Questionnaire 

1 Question

  • Q1. Before vs After Triggers
  • Ans. 

    Before triggers are executed before the record is saved to the database, while after triggers are executed after the record is saved.

    • Before triggers are used to validate or modify record values before they are saved.

    • After triggers are used to perform additional actions after the record is saved.

    • Before triggers can be used to prevent the record from being saved by throwing an exception.

    • After triggers can be used to upda...

  • Answered by AI

Skills evaluated in this interview

Senior Salesforce Developer Interview Questions Asked at Other Companies

asked in Infosys
Q1. What are best practices to write trigger? What are execution orde ... read more
Q2. Can an email message from a trigger be sent after logic gets into ... read more
Q3. Lightning requirement WRT mobile friendly design . How to show as ... read more
asked in TCS
Q4. What is difference between custom settings and custom metadata
asked in Capgemini
Q5. Write a trigger on Order Products. It should display the most num ... read more

Interview questions from similar companies

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Inheritance in apex class?
  • Ans. 

    Inheritance in Apex class allows a class to inherit properties and methods from another class.

    • Inheritance is achieved using the 'extends' keyword in Apex.

    • Child classes can access all non-private members of the parent class.

    • Child classes can override methods from the parent class.

    • Example: Class B extends Class A.

  • Answered by AI
  • Q2. What is Skinny table
  • Ans. 

    Skinny table is a custom table in Salesforce that contains a subset of fields from standard and custom objects for performance optimization.

    • Skinny tables are used to store frequently accessed fields in a denormalized form to improve query performance.

    • They are created by Salesforce automatically based on the fields accessed in reports, list views, and SOQL queries.

    • Skinny tables are read-only and are automatically update...

  • Answered by AI
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Last trigger/class you wrote
  • Ans. 

    Developed a trigger to update account fields based on related opportunities

    • Trigger written in Apex to handle before update event on Opportunity object

    • Used SOQL queries to fetch related Account records

    • Implemented logic to update specific fields on related Account records

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company

Round 1 - One-on-one 

(2 Questions)

  • Q1. All basics of SFDC development
  • Ans. Be calm and you will get it
  • Answered Anonymously
  • Q2. What are types in worlflow
  • Ans. 

    Types in workflow refer to the different categories or classifications of workflow rules or actions.

    • Types in workflow can include time-based, immediate, or scheduled actions.

    • Each type serves a specific purpose in automating processes within Salesforce.

    • For example, time-based actions are triggered based on a specified time or date.

    • Immediate actions are executed immediately after a record meets certain criteria.

    • Scheduled...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - A quick learner is appriciated
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 Naukri.com and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Question related to Project What is custom metadata and custom label
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
2
Poor
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(2 Questions)

  • Q1. What is Rest API Integration?
  • Ans. 

    Rest API Integration is a method of connecting different software systems through the use of RESTful APIs.

    • Rest API Integration allows different systems to communicate with each other over the internet.

    • It enables the exchange of data between systems in a standardized and secure manner.

    • Developers can use REST APIs to access and manipulate resources on remote servers.

    • Examples of Rest API Integration include integrating a ...

  • Answered by AI
  • Q2. Trigger for roll up summmary
  • Ans. 

    A trigger is used to perform calculations and updates on related records when a record is created, updated, or deleted.

    • Triggers are written in Apex and are used to automate processes in Salesforce.

    • They can be used to perform calculations, updates, or validations on related records.

    • For roll up summaries, triggers can be used to calculate and update summary fields on parent records based on child records.

    • Example: Trigger...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Do you have any certification?

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Trigger scenario based question

Persistent Systems Interview FAQs

How many rounds are there in Persistent Systems Senior Salesforce Developer interview?
Persistent Systems interview process usually has 4 rounds. The most common rounds in the Persistent Systems interview process are Resume Shortlist, One-on-one Round and Technical.
What are the top questions asked in Persistent Systems Senior Salesforce Developer interview?

Some of the top questions asked at the Persistent Systems Senior Salesforce Developer interview -

  1. Before vs After Trigg...read more
  2. 1. Salesforce Admin like profile, permission sets, sharing Derris, owd, junctio...read more
  3. Same questions as ab...read more

Tell us how to improve this page.

Persistent Systems Senior Salesforce Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Join Persistent Systems See Beyond, Rise Above
Persistent Systems Senior Salesforce Developer Salary
based on 89 salaries
₹4.8 L/yr - ₹13.6 L/yr
49% less than the average Senior Salesforce Developer Salary in India
View more details

Persistent Systems Senior Salesforce Developer Reviews and Ratings

based on 6 reviews

3.4/5

Rating in categories

3.9

Skill development

3.0

Work-life balance

2.6

Salary

4.0

Job security

3.0

Company culture

3.3

Promotions

3.0

Work satisfaction

Explore 6 Reviews and Ratings
Software Engineer
4.4k salaries
unlock blur

₹2.5 L/yr - ₹9.5 L/yr

Senior Software Engineer
3.8k salaries
unlock blur

₹5 L/yr - ₹15.4 L/yr

Lead Engineer
3.1k salaries
unlock blur

₹9.9 L/yr - ₹30 L/yr

Lead Software Engineer
3k salaries
unlock blur

₹7.2 L/yr - ₹18.4 L/yr

Project Lead
1.9k salaries
unlock blur

₹13.2 L/yr - ₹38.8 L/yr

Explore more salaries
Compare Persistent Systems with

Cognizant

3.8
Compare

TCS

3.7
Compare

IBM

4.0
Compare

Infosys

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