Question 66
A developer creates a new Apex trigger with a helper class, and writes a test class that only exercises 95% coverage of the new Apex helper class.
Change Set deployment to production fails with the test coverage warning:
"Test coverage of selected Apex Trigger is 0%, at least 1% test coverage is required." What should the developer do to successfully deploy the new Apex trigger and helper class?
Change Set deployment to production fails with the test coverage warning:
"Test coverage of selected Apex Trigger is 0%, at least 1% test coverage is required." What should the developer do to successfully deploy the new Apex trigger and helper class?
Question 67
An Apex transaction inserts 100 Account records and 2,000 Contact records before encountering a DML exception when attempting to insert 500 Opportunity records.
The Account records are inserted by calling the database.insert() method with the allOrNone argument set to false. The Contact and Opportunity records are inserted using the standalone insert statement.
How many total records will be committed to the database in this transaction?
The Account records are inserted by calling the database.insert() method with the allOrNone argument set to false. The Contact and Opportunity records are inserted using the standalone insert statement.
How many total records will be committed to the database in this transaction?
Question 68
What is the data type returned by the following SOSL search? {FIND 'Acme*' in name fields returning account,opportunity};
Question 69
What can a developer use to determine if the core Apex code exceeds any governor limits in a test class during bulk execution?
Question 70
Refer to the following code that runs in an Execute Anonymous block:

In an environment where the full result set is returned, what is a possible outcome of this code?

In an environment where the full result set is returned, what is a possible outcome of this code?
