Universal Containers wants a list button to display a Visualforce page that allows users to edit multiple records. which Visualforce feature supports this requirement?

Universal Containers wants a list button to display a Visualforce page that allows users to edit multiple records. which Visualforce feature supports this requirement?A . <apex:listButton> tagB . Custom controllerC . RecordSetVar page attributeD . Controller extensionView AnswerAnswer: C

April 29, 2022 No Comments READ MORE +

Which three options should be used to build out the database layer for the application?

Universal Containers decides to use exclusively declarative development to build out a new Salesforce application. Which three options should be used to build out the database layer for the application? Choose 3 answersA . Roll-Up SummariesB . TriggersC . RelationshipsD . Process BuilderE . Custom Objects and FieldsView AnswerAnswer: A,C,D

April 28, 2022 No Comments READ MORE +

which statement is true regarding execution order when triggers are associated to the same object and event?

which statement is true regarding execution order when triggers are associated to the same object and event?A . Trigger execution order cannot be guaranteed.B . executed In the order they are modified.C . Triggers are executed alphabetically by trigger name.D . Triggers are executed in the order they are created.View...

April 28, 2022 No Comments READ MORE +

What is the correct definition of the Apex method?

A Next Best Action strategy uses an Enhance Element that invokes an Apex method to determine a discount level for a Contact, based on a number of factors. What is the correct definition of the Apex method?A . @InvocableMethod global static ListRecommendation getLevel(List<ContactWrapper> input) { /*implementation*/ }B . @InvocableMethod global...

April 28, 2022 No Comments READ MORE +

Universal Containers has an order system that uses an Order Number to identify an order for customers and service agents. Order will be imported into Salesforce.

Universal Containers has an order system that uses an Order Number to identify an order for customers and service agents. Order will be imported into Salesforce.A . LookupB . Direct LookupC . Number with External IDD . Indirect LookupView AnswerAnswer: C

April 28, 2022 No Comments READ MORE +

What should a developer do to allow their code to move some existing Orderltem records to a new Order record?

A developer created a custom order management app that uses an Apex class. The order is represented by an Order object and an Orderltem object that has a master-detail relationship to Order. During order processing, an order may be split into multiple orders. What should a developer do to allow...

April 28, 2022 No Comments READ MORE +

Which three statements are useful inside the unit test to effectively test the custom controller?

A developer has a single custom controller class that works with a Visualforce Wizard to support creating and editing multiple subjects. The wizard accepts data from user inputs across multiple Visualforce pages and from a parameter on the initial URL. Which three statements are useful inside the unit test to...

April 27, 2022 No Comments READ MORE +

Which is the correct implementation to use the PaymentProcessor interface class?

A developer must implement a CheckPaymentProcessor class that provides check processing payment capabilities that adhere to what defined for payments in the PaymentProcessor interface. public interface PaymentProcessor { void pay(Decimal amount); } Which is the correct implementation to use the PaymentProcessor interface class?A . Public class CheckPaymentProcessor implements PaymentProcessor {...

April 27, 2022 1 Comment READ MORE +

Without writing unnecessary code, which controller should be used for this purpose?

A developer Is asked to create a Visualforce page that lists the contacts owned by the current user. This component will be embedded In a Lightning page. Without writing unnecessary code, which controller should be used for this purpose?A . Standard list controllerB . Standard controllerC . Lightning controllerD ....

April 27, 2022 No Comments READ MORE +

Which two examples above use the system. debug statements to correctly display the results from the SOQL aggregate queries? Choose 2 answers

Which two examples above use the system. debug statements to correctly display the results from the SOQL aggregate queries? Choose 2 answers A . Example 1B . Example 2C . Example 3D . Example 4View AnswerAnswer: B,C

April 27, 2022 1 Comment READ MORE +