A developer creates a custom exception as shown below:
public class ParityException extends Exception { }
What are two ways the developer can fire the exception in Apex?
Answer : A, B
How should a developer write unit tests for a private method in an Apex class?
Answer : D
A developer is asked to write helper methods that create test data for unit tests.

What should be changed in the Testutils class so that its methods are only usable by unit test methods?

What should be changed in the TestUtils class so that its methods are only usable by unit test methods?
Answer : A
A developer has a single custom controller class that works with a Visualforce Wizard to support creating and editing multiple sObjects. The wizard accepts data from user inputs across multiple Visualforce pages and from a parameter on the initial URL.
Which three statements are useful inside the unit test to effectively test the custom controller?
Choose 3 answers
Answer : A, B, E
What should a developer use to obtain the Id and Name of all the Leads, Accounts, and Contacts that have the company name "Universal Containers?
Answer : C
What are two ways a developer can get the status of an enqueued job for a class that implements the queueable interface?
Choose 2 answers
Answer : C, D
A developer must perform a complex SOQL query that joins two objects in a Lightning component.
How can the Lightning component execute the query?
Answer : A