- (Exam Topic 1)
What is the transaction limit on the max Salesforce CPU time?
Correct Answer:
D
- (Exam Topic 3)
Refer to the code snippet below:
A custom object called Credit_Memo_c exist in a Salesforce environment. As part of a new feature development that retrieves and manipulates this type of record, the developer needs to ensure race conditions are prevented when a set of records are modified within an Apex transaction.
In the preceding Apex code, how can the developer alter the query statement to use SOQL features to prevent race condition within a transaction?
A)
B)
C)
D)
Correct Answer:
C
- (Exam Topic 3)
A developer created an Opportunity trigger that updates the account rating when an associated opportunity is considered high value. Current criteria for an opportunity to be considered high value is an amount greater than or equal to SI,000,000. However, this criteria value can change over time.
There is a new requirement to also display high value opportunities In a Lightning web component.
Which two actions should the developer take to prevent the business logic that obtains the high value opportunities from being repeated in more than one place?
Choose 2 answers
Correct Answer:
AD
- (Exam Topic 1)
A developer is working on code that requires a call to an external web service from a batch. How should the developer enable this functionality?
Correct Answer:
B
- (Exam Topic 1)
A Visualforce page needs to make a callout to get biding information and tax information from two different REST endpoints. The information needs to be Displayed to the user at the same time and the return value of the billing information contains the input for the tax information callout. Each endpoint might take up to two minutes to process.
How should a developer implement the callouts?
Correct Answer:
A