Interview Questions - 6
1. What is difference between PAGEBLOCK TABLE and a DATA TABLE? A: <apex:pageBlockTable> : A list of data displayed as a table within either an <apex:pageBlock> or <apex:pageBlockSection> component, similar to a related list or list view in a standard Salesforce page. <apex:dataTable> : It will also display the data as a table, but look and feel will be different. 2. Can we make a field mandatory in a Visualforce Page? A: Yes, we can make the field required by using the "Required" attribute. 3. What is Batch Apex? When we go for the batch Apex? A: Batch Apex is used to build complex, long-running processes on the force.com platform. We can go for the batch apex when we face any Governor Limits. 4. What is Pagination? A: Pagination is the getting Previous and Next Links to move into previous and next pages. 5. How can we avoid the Governor Limitations? A: By using Batch Apex. 6. What is Developer Console or Anonymous Block? A: An an...