Posts

Showing posts from August, 2021

Salesforce Developer Interview Questions

1. Difference between queueable and batch apex?  Batchable Apex: If it is a long-running complex process then you should go for Batchable Apex and you can have an option to schedule the batch to run at a customized time. It can process up to 50 million records in asynchronous mode. 5 concurrent jobs are allowed to run at a time and future methods are not allowed in the Batch class. Batch Class should implement Database. Batchable interface and it should have three methods start(), execute() and finish() methods. Queueable Apex: It comes in handy when you need to have both the operations of Batch and future method and it should implement Queueable Interface. If one job is dependent on another job means here we can chain the dependent job in execute method by system.enqueuejob(new secondJob()); You can also able to chain up to 50 jobs and in the developer edition, you can able to chain up to 5 jobs only. It will accept non-primitive types like sObjects and it also runs in asynchronous mo

Salesforce Admin Interview Questions

 1. What is Profile? A profile is a set of permissions and settings. Profile settings decide which data the user is able to view and permissions decide what the user is able to do with that data. A basic condition for user creation is a profile. without a profile, user-level creation is impossible. Each user has a single profile that determines which data and functionalities are available to them. The settings in A user's profile decide whether we can see a specific app, tab, field, or record type. The permissions in a user's profile control whether you are able to create or update records, run reports and customize the application. Profiles are typically associated with the job role of a user, such as a system administrator, recruiter or recruiting manager, but you can create profiles for anything that makes sense in your Salesforce org. A profile can be allocated to multiple users, but each user can have only one profile. To create a profile, go to, Setup-> manage users-&g

Popular posts from this blog

Lightning Web Components Specialist Superbadge Solution Boat Tile Component

Lightning Web Components Specialist Superbadge Solution Boat Search Results Component

Lightning Web Components Specialist Superbadge Solution Boat Search Form Component