Universal Charities (UC) uses Salesforce to collect electronic donations in the form of credit card deductions from individuals and corporations.
When a customer service agent enters the credit card information, it must be sent
to 8 3rd-party payment processor for the donation to be processed, UC uses one
payment processor for individuals and a different one for corporations.
What should a developer use to store the payment processor settings for the
different payment processors, so that their system administrator can modify the
settings once they are deployed, if needed?
An org records customer order information in a custom object, ordar__c, that has
fields for the shipping address. A developer is tasked with adding code to calculate
shipping charges on an order, based on a flat percentage rate associated with the
region of the shipping address.
What should the developer use to store the rates by region, so that when the changes are deployed to production no additional steps are needed for the calculation to work?
A company has a custom object, Order__c, that has a custom picklist field, Status__c, with values of ‘New,' 'In Progress,’ or ‘Fulfilled’ and a lookup field,
Contact__c, to Contact.
Which SOQL query will return a unique list of all the Contact records that have no ‘Fulfilled’ Orders?
A)
B)
C)
D)
How should a developer assert that a trigger with an asynchronous process has successfully run?
A developer wants to write a generic Apex method that will compare the Salesforce Name field between any two object records. For example, to compare the Name field of an Account and an Opportunity; or the Name of an Account and a Contact.
Assuming the Name field exists, how should the developer do this?
A Visuzlforce page loads slowly due to the large amount of data it displays.
Which strategy can a developer use to improve the performance?
An Aura component has a section that displays some information about an Account
and it works well on the desktop, but users have to scroll horizontally to see the description field output on their mobile devices and tablets.
How should a developer change the component to be responsive for mobile and tablet devices?
A)
B)
C)
D)
How should a developer verify that a specific Account record is being tested in a test
class for a Visualforce controller?