Question 86

What is a valid Apex statement?
  • Question 87

    A developer needs to import customer subscription records into salesforce and attach them to existing account records. Which 2 actions should the developer take to ensure the subscription records are related to the correct account records? Choose 2 answers
  • Question 88

    A developer created a Visualforce page and custom controller to display the account type field as shown below. Custom controller code: public class customCtrlr{ private Account theAccount; public String actType; public customCtrlr() { theAccount = [SELECT Id, Type FROM Account WHERE Id = :apexPages.currentPage().getParameters().get('id')]; actType = theAccount.Type; } } Visualforce page snippet: The Account Type is {!actType} The value of the account type field is not being displayed correctly on the page. Assuming the custom controller is property referenced on the Visualforce page, what should the developer do to correct the problem?
  • Question 89

    A developer has a Visualforce page and custom controller to save Account records. The developer wants to display any validation rule violations to the user.
    How can the developer make sure that validation rule violations are displayed?
  • Question 90

    What are three capabilities of the <ltng : require> tag when loading JavaScript resources in Aura components?
    Choose 3 answers