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 Salesforce Developer Lead Interview Questions and Answers

Updated 22 Feb 2023

Persistent Systems Salesforce Developer Lead Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Salesforce Development
  • Q2. Aura and LWC, Salesforce Developer questions

Interview Preparation Tips

Interview preparation tips for other job seekers - The Interview Should be taken seeing Capability of the seeker, rather than technical skills, we do learn technical skills on job (Live). If a seeker missed to have few skills and has the capability to learn skills on job he/she should be given a fare chance.

When I joined Cognizant as fresher, I did not had technical skills, My manager has seen a capability and given me a chance, and I was a top performer for consecutive 3 years.

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
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Write a Code related to the Trigger

Round 2 - Technical 

(2 Questions)

  • Q1. Explain the Batch Job
  • Ans. 

    Batch job is a process that allows you to process large volumes of data in smaller chunks.

    • Batch job is used to handle large data volumes that would exceed the normal processing limits.

    • It breaks down the data into smaller batches for processing, improving performance and efficiency.

    • Batch jobs can be scheduled to run at specific times or triggered manually.

    • Examples include data imports, updates, and deletions in Salesfor

  • Answered by AI
  • Q2. Pro and cons of the LWC
  • Ans. 

    LWC (Lightning Web Components) are a modern UI framework for building web components on the Salesforce platform.

    • Pros: Faster performance, better security, easier to debug, reusable components, better encapsulation.

    • Cons: Steeper learning curve for developers new to web components, limited browser support compared to Aura components.

  • 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
-

I was interviewed in Aug 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Profile, role differencess
  • Q2. How data is sent by callout
  • Ans. 

    Data is sent by callout using HTTP request methods like GET, POST, PUT, DELETE.

    • Data can be sent in the request body or as query parameters

    • Headers can be used to provide additional information

    • Response codes indicate the status of the request

    • Examples: Sending data to an external API, retrieving data from a web service

  • 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

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
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
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

Persistent Systems Interview FAQs

How many rounds are there in Persistent Systems Salesforce Developer Lead interview?
Persistent Systems interview process usually has 2 rounds. The most common rounds in the Persistent Systems interview process are Resume Shortlist and Technical.
What are the top questions asked in Persistent Systems Salesforce Developer Lead interview?

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

  1. Aura and LWC, Salesforce Developer questi...read more
  2. Salesforce Developm...read more

Tell us how to improve this page.

Persistent Systems Salesforce Developer Lead Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more
Join Persistent Systems See Beyond, Rise Above

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
DXC Technology Interview Questions
3.7
 • 809 Interviews
Mphasis Interview Questions
3.4
 • 806 Interviews
Nagarro Interview Questions
4.0
 • 778 Interviews
View all
Persistent Systems Salesforce Developer Lead Salary
based on 6 salaries
₹8.4 L/yr - ₹14 L/yr
43% less than the average Salesforce Developer Lead Salary in India
View more details

Persistent Systems Salesforce Developer Lead Reviews and Ratings

based on 4 reviews

4.6/5

Rating in categories

4.3

Skill development

4.2

Work-life balance

4.2

Salary

3.4

Job security

4.8

Company culture

3.4

Promotions

4.2

Work satisfaction

Explore 4 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.2 L/yr

Lead Engineer
3.1k salaries
unlock blur

₹10 L/yr - ₹30.7 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

Wipro

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