Tag: sfdc

Interview Questions on Data Loader and Import Wizard in Salesforce

Q. Difference between Bulk Api Vs Data Loader? Dataloader is a good to insert upto 5 million records. Bulk API allows you to run the inserts on dataloader asynchronously. Using… Read more »

Interview Questions on Sharing and Security in Salesforce

  Q. What is permission set group? Permission Set Groups is a feature that allows Admins to combine multiple permission sets into a single permission set group for user assignment. With the grouping mechanism, admins… Read more »

Intermediate to Advance Level Interview Questions on Schedulable Apex

  Q. Explain code to schedule batch Apex to run at regular intervals?  global class SampleBatchScheduler implements Schedulable { // Execute at regular intervals global void execute(SchedulableContext ctx){ String soql… Read more »