When an Account's custom picklist field called Customer Sentiment is changed to a value of "Confused", a new related Case should automatically be created.
Which two methods should a developer use to create this case? (Choose two.)
A. Process Builder
B. Apex Trigger
C. Custom Button
D. Workflow Rule
On which object can an administrator create a roll-up summary field?
A. Any object that is on the master side of a master-detail relationship.
B. Any object that is on the parent side of a lookup relationship.
C. Any object that is on the detail side of a master-detail relationship.
D. Any object that is on the child side of a lookup relationship.
Candidates are reviewed by four separate reviewers and their comments and scores which range from 1 (lowest) to 5 (highest) are stored on a review record that is a detail record for a candidate what is the best way to indicate that a combined review score of 15 of better is required to recommend that the candidate come in for an interview?
A. Use a validation rule on a total score field on the candidate record that prevents a recommended field from being true if the total score is less than 15
B. Use a workflow rule to calculate the sum of the review scores and send an email to the hiring manager when the total is 15 or better
C. Use visual workflow to set a recommended field on the candidate whenever the cumulative review score is 15 or better
D. Use a rollup summary field to calculates the sum of the review scores, and store this in a total score field on the candidate
A developer creates a custom controller and custom Visualforce page by using the following code block:public class myController {public String myString;public String getMyString() {return 'getmyString';} public String getStringMethod1() {return myString;}public String getStringMethod2() {if (myString == null) myString = 'Method2';return myString;}}{!myString}, {!StringMethod1}, {!StringMethod2}, {!myString}
What does the user see when accessing the custom page?
A. GetMyString , , Method2 , getMystring
B. , , Method2 , getMyString
C. , , Method2,
D. GetMyString , , ,
Application Events follow the traditional publish-subscribe model. Which method is used to fire an event?
A. Fire()
B. Emit()
C. RegisterEvent()
D. FireEvent()
A developer needs to provide a Visualforce page that lets users enter Product-specific details during a Sales cycle. How can this be accomplished? (Choose 2)
A. Download a Managed Package from the AppExhange that provides a custom Visualforce page to modify.
B. Copy the standard page and then make a new Visualforce page for Product data entry.
C. Download an Unmanaged Package from the AppExchange that provides a custom Visualforce page to modify.
D. Create a new Visualforce page and an Apex controller to provide Product data entry.
Which resource can be included in a Lightning Component bundle?Choose 2 answers
A. Apex class
B. Adobe Flash
C. JavaScript
D. Documentation
What is the easiest way to verify a user before showing them sensitive content?
A. Sending the user a SMS message with a passcode.
B. Calling the generateVerificationUrl method in apex.
C. Sending the user an Email message with a passcode.
D. Calling the Session.forcedLoginUrl method in apex.
How can a developer retrieve all Opportunity record type labels to populate a list collection? Choose 2 answers
A. Obtain describe object results for the Opportunity objct.
B. Write a for loop that extracts values from the Opportunity.RecordType.Name field.
C. Use the global variable $RecordType and extract a list from the map.
D. Write a SOQL for loop that iterates on the RecordType object.
What must the Controller for a Visualforce page utilize to override the Standard Opportunity view button?
A. The StandardSetController to support related lists for pagination.
B. The Opportunity StandardController for pre -built functionality.
C. A callback constructor to reference the StandardController.
D. A constructor that initializes a private Opportunity variable.