Question: 1
A developer has written a Visualforce page to create a new account with the following markup: The Visualforce page has extra logic for validating the website field. How can the developer add an error message next to the website field if the submitted value isn't valid?
Question: 2
A developer has created an Order entry page that includes an tag for a field label. How can the developer ensure that the label text changes when the field label changes?
Question: 3
A developer has created a Batchable class that inserts Accounts. The Batchable class is running with batch size of 200, and is getting an error. The developer identifies the following code as problematic. trigger AccountTrigger on Account(after insert) { for( Account a : Trigger.new) { AccountHandler.insertPartnerAccount(a); } } public Class AccountHandler{ @future public static void insertPartnerAccount(Account a){ //perform processing if( a.Is_Partner__c) { Account partnerAccount = new Account(); //set values insert partnerAccount; } } } What governor limit or system limitation is the developer most likely violating?
Question: 4
A developer needs to write tests to ensure that code doesn't fail when it is deployed to a different organization. The developer also must ensure that the code works properly with organization sharing rules and ensure that the code mitigates errors due to limits. How can the developer meet these requirements? Choose 2 answers
Question: 5
What is a controller value that will NOT be saved in the viewstate of a Visualforce page? Choose 3 answers