Interview Question on Batch Apex
What is Asynchronous Apex? An asynchronous process is a process or function that executes a task “in the background” without the user having to wait for the task to… Read more »
What is Asynchronous Apex? An asynchronous process is a process or function that executes a task “in the background” without the user having to wait for the task to… Read more »
Batch class in salesforce is used to run large jobs (think thousands or millions of records!) that would exceed normal processing limits. To use batch Apex, write an Apex class… Read more »
What to Test In Apex? Salesforce.com recommends the following components need to test. 1. Single Records: This includes testing to verify that a single record produces the correct, expected result… Read more »
Testing is critical component and Salesforce.com strongly recommends using a test-driven development process. Salesforce requires at least 75% of code to be covered by our test classes before the code… Read more »
In what ways we can achieve pagination? We can add pagination to a page using a standard set controller by utilizing the next and previous actions. To control the number of records displayed on… Read more »
Difference between role and profile? Profiles help to control object privileges such as CRED (Create, Read, Edit, Delete). They also contain system permissions that a user can carry out such as… Read more »
Given string is palindrome or not ? Palindrome is a string that reads the same backward as well as forward and can be of odd or even length. A palindrome… Read more »