Which resource can be included in a Lightning Component bundle? Choose 2 answers

Which resource can be included in a Lightning Component bundle? Choose 2 answersA . Apex classB . Adobe FlashC . JavaScriptD . DocumentationView AnswerAnswer: C, D

October 21, 2021 No Comments READ MORE +

Which user can edit a record after it has been locked for approval? (Choose 2)

Which user can edit a record after it has been locked for approval? (Choose 2)A . Any user with a higher role in the hierarchyB . A user who is assigned as the current approverC . Any user who approved the record previouslyD . An administratorView AnswerAnswer: B, D

October 21, 2021 No Comments READ MORE +

How should the developer design the Apex classes?

A developer created a Lightning component to display a short text summary for an object and wants to use it with multiple Apex classes. How should the developer design the Apex classes?A . Have each class define method getObject() that returns the sObject that is controlled by the Apex class.B...

October 21, 2021 No Comments READ MORE +

How can this be accomplished?

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...

October 21, 2021 No Comments READ MORE +

What is the value of x after the code segment executes?

What is the value of x after the code segment executes? String x = 'A’; Integer i = 10; if ( i < 15 ) {i = 15;x = 'B';} else if ( i < 20 ) {x = 'C';} else {x = 'D'; }A . DB . AC ....

October 21, 2021 No Comments READ MORE +

Which action can a developer take to enforce this requirement?

A reviewer is required to enter a reason in the comments field only when a candidate is recommended to be hired. Which action can a developer take to enforce this requirement?A . Create a required Visualforce component.B . Create a formula field.C . Create a required comments field.D . Create...

October 20, 2021 No Comments READ MORE +

How should the Developer overcome this problem?

While writing a test class that covers an Opportunity LineItem trigger, a Developer is unable to create a standard PriceBook since one already exists in the org. How should the Developer overcome this problem?A . Use Test.getStandardPricebookId() to get the standard PriceBook IC . Use @IsTest(SeeAllData=true) and delete the existing...

October 20, 2021 No Comments READ MORE +

How are the selected values represented in Apex?

In a single record, a user selects multiple values from a multi-select picklist. How are the selected values represented in Apex?A . As a String with each value separated by a commaB . As a Set with each value as an element in the setC . As a String with...

October 20, 2021 No Comments READ MORE +

What is a benefit of using an after insert trigger over using a before insert trigger?

What is a benefit of using an after insert trigger over using a before insert trigger?A . An after insert trigger allows a developer to bypass validation rules when updating fields on the new record.B . An after insert trigger allows a developer to insert other objects that reference the...

October 20, 2021 No Comments READ MORE +

Why would a developer consider using a custom controller over a controller extension?

Why would a developer consider using a custom controller over a controller extension?A . To increase the SOQL query governor limits.B . To implement all of the logic for a page and bypass default Salesforce functionalityC . To leverage built-in functionality of a standard controllerD . To enforce user sharing...

October 20, 2021 No Comments READ MORE +