Which two describe Heroku Redis? Choose 2 answers.
A. Is an in-memory key-value data store, run by Heroku.
B. Is a repository for storing large images.
C. Is an option for long-term data storage.
D. Is provisioned and managed as an add-on.
What is a capability of the Force.com IDE? Choose 2 answers
A. Roll back deployments.
B. Run Apex tests.
C. Download debug logs.
D. Edit metadata components.
What must the Controller for a Visulforce page utilized to override the standard Opportunity view button?
A. A constructor that initialized a private Opportunity variable.
B. A callback constructor to reference the StandardController
C. The StandardSetController to support related lists for pagination
D. The Opportunity StandardController for pre-built functionality
The operation manager at a construction company uses a custom object called Machinery to manage the usage and maintenance of its cranes and other machinery. The manager wants to be able to assign machinery to different constructions jobs, and track the dates and costs associated with each job. More than one piece of machinery can be assigned to one construction job. What should a developer do to meet these requirements?
A. Create a lookup field on the Construction Job object to the Machinery object.
B. Create a lookup field on the Machinery object to the Construction Job object.
C. Create a junction object with Master-Detail Relationship to both the Machinery object and the Construction Job object.
D. Create a Master-Detail Lookup on the Machinery object to the Construction Job object.
A team of many developers work in their own individual orgs that have the same configuration at the production org. Which type of org is best suited for this scenario?
A. Developer Sandbox
B. Developer Edition
C. Full Sandbox
D. Partner Developer Edition
A developer must provide custom user interfaces when users edit a Contact in either Salesforce Classic or Lightning Experience.
What should the developer use to override the Contact's Edit button and provide this functionality?
A. A Visualforce page in Salesforce Classic and a Lightning component in Lightning Experience
B. A Lightning component in 5alesforce Classic and a Lightning component in lightning Experience
C. A Visualforce page in Salesforce Classic and a Lightning page in Lightning Experience
D. A Lightning page in Salesforce Classic and a Visualforce page in Lightning Experience
Universal Containers wants Opportunities to no longer be editable when reaching the Closed/Won stage. How should a developer accomplish this?
A. Use a validation rule.
B. Use the Process Automation settings.
C. Use Flow Builder.
D. Mark fields as read-only on the page layout.
What can be used to override the Account's standard Edit button for Lightning Experience7
A. Lightning action
B. Lightning component
C. Lightning page
D. Lightning flow
A developer is creating a Lightning web component to show a list of sales records.
The Sales Representative user should be able to see the commission-field on each record. The Sales Assistance user should be able to see all field on the record except the commission field.
How should this be enforced so that the component works for both users without showing any errors?
A. Use Lightning Data Service to get the collection of sales records.
B. Use Lightning Locker Service to enforce sharing rules and field-level security.
C. Use with SECURITY_EMFoRCED in the SOQL that fetches the data for the component.
D. Use security. stripInaccessible to remove fields inaccessible to the current user.
Universal Containers wants to ensure that all new leads created in the system have a valid email address. They have already created a validation rule to enforce this requirement, but want to add an additional layer of validation using automation.
What would be the best solution for this requirement?
A. Submit a REST API Callojt with a JSON payload and validate the f elds on a third patty system
B. Use an Approval Process to enforce tne completion of a valid email address using an outbound message action.
C. Use a before-save Apex trigger on the Lead object to validate the email address and display an error message If it Is invalid
D. Use a custom Lightning web component to make a callout to validate the fields on a third party system.