Question 16

The Account object has a custom formula field,Level__c, that is defined as a Formula(Number) with two decimal places. Which three are valid assignments? Choose 3.
  • Question 17

    A developer wrote a unit test to confirm that a custom exception works properly in a custom controller, but the test failed due to an exception being thrown.
    Which step should the developer take to resolve the issue and properly test the exception?
  • Question 18

    A developer creates a custom controller and custom Visualforce page by using the following code block:public class myController {public String myString;public String getMyString() {return 'getmyString';}public String getStringMethod1() {return myString;}public String getStringMethod2() {if (myString == null)myString = 'Method2';return myString;}}{!myString}, {!StringMethod1}, {!StringMethod2}, {!myString}What does the user see when accessing the custom page?
  • Question 19

    How should a custom user interface be provided when a user edits an Account in Lightning Experience?
  • Question 20

    What si the debug output of the following apex code? Decimal thevalue; system.debug(thevalue);