Topic 1 : Exam Pool A
What should a developer use to implement an automatic Approval Process submission for Cases?
A.
An Assignment Rule
B.
Scheduled Apex
C.
Process Builder
D.
A Workflow Rule
Process Builder
Which two strategies should a developer use to avoid hitting governor limits when developing in a
multi-tenant environment? (Choose two.)
A.
Use collections to store all fields from a related object and not just minimally required fields.
B.
Use methods from the “Limits” class to monitor governor limits.
C.
Use SOQL for loops to iterate data retrieved from queries that return a high number of rows.
D.
Use variables within Apex classes to store large amounts of data.
Use methods from the “Limits” class to monitor governor limits.
Use SOQL for loops to iterate data retrieved from queries that return a high number of rows.
Which tool allows a developer to send requests to the Salesforce REST APIs and view the responses?
A.
REST resource path URL
B.
Workbench REST Explorer
C.
Developer Console REST tab
D.
Force.com IDE REST Explorer tab
Workbench REST Explorer
Map<ID, Account> accountMap = new Map>ID, Account> ([SELECT Id, Name FROM Account]);
What are three valid Apex loop structures for iterating through items in the collection? (Choose three.)
A.
for (ID accountID : accountMap.keySet()) {…}
B.
for (Account accountRecord : accountMap.values()) {…}
C.
for (Integer i=0; I < accountMap.size(); i++) {…}
D.
for (ID accountID : accountMap) {…}
E.
for (Account accountRecord : accountMap.keySet()) {…}
for (ID accountID : accountMap.keySet()) {…}
for (Account accountRecord : accountMap.values()) {…}
for (Integer i=0; I < accountMap.size(); i++) {…}
Which three options can be accomplished with formula fields? (Choose three.)
A.
Generate a link using the HYPERLINK function to a specific record.
B.
Display the previous value for a field using the PRIORVALUE function.
C.
Determine if a datetime field value has passed using the NOW function.
D.
Return and display a field value from another object using the VLOOKUP function.
E.
Determine which of three different images to display using the IF functio
Generate a link using the HYPERLINK function to a specific record.
Determine if a datetime field value has passed using the NOW function.
Determine which of three different images to display using the IF functio
Page 10 out of 78 Pages |
Previous |