Tag: apex

Challenge: Mapping between Salesforce Permission Name and the Label

Challenge : How to map between a permission name in the API and the label ? Go to Profile ->System  Permissions ->Find Create and Customize List views Now if we… 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 »

Intermediate to Advance Level Interview Questions on Queueable Apex

  Q. Can you write a blueprint of Queueable Job? Create a class, implement the Queueable interface, and override the execute method. public class QueueableApexExample implements Queueable {     public… Read more »