What are three characteristics of static methods? (Choose three.)
Correct Answer:
ACE
What is the result of the debug statements in testMethod3 when you create test data using testSetup in below code?
Correct Answer:
C
A lead object has a custom field Prior_Email c. The following trigger is intended to copy the current Email into the Prior_Email c field any time the Email field is changed:
Which type of exception will this trigger cause?
Correct Answer:
C
Which action can a developer perform in a before update trigger? (Choose 2)
Correct Answer:
AB
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?
Correct Answer:
A