Which three options can be used to build out the business logic layer for this application?

Universal Containers decides to use purely declarative development to build out a new Salesforce application. Which three options can be used to build out the business logic layer for this application? Choose 3 answersA . Flow BuilderB . Validation RulesC . Process builderView AnswerAnswer: A,B,C

March 18, 2022 No Comments READ MORE +

In the Lightning UI, where should a developer look to find information about a Paused Flow Interview?

In the Lightning UI, where should a developer look to find information about a Paused Flow Interview?A . On the Paused Row Interviews related List for a given recordB . In the Paused Interviews section of the Apex Flex QueueC . In the system debug log by Altering on Paused...

March 18, 2022 1 Comment READ MORE +

How should a developer write the test to provide test coverage?

A developer wrote Apex code that calls out to an external system. How should a developer write the test to provide test coverage?A . Write a class that extends HTTPCalloutMock.B . Write a class that implements the HTTPCalloutMock interface.C . Write a class that implements the WebserviceMock interface.D . Write...

March 18, 2022 No Comments READ MORE +

What is the correct implementation?

An org tracks customer orders on an Order object and the items of an Order on the Line Item object. The Line Item object has a MasterDetail relationship to the order object. A developer has a requirement to calculate the order amount on an Order and the line amount on...

March 17, 2022 No Comments READ MORE +

What is the correct implementation of the ShippingCalculator class?

A developer must create a ShippingCalculator class that cannot be instantiated and must include a working default implementation of a calculate method, that sub-classes can override. What is the correct implementation of the ShippingCalculator class?A . Public abstract class ShippingCalculator { public override calculate() { /*implementation*/ } }B . Public...

March 17, 2022 No Comments READ MORE +

How should the developer implement this request?

A developer is asked to create a Visualforce page that displays some Account fields as well as fields configured on the page layout for related Contacts. How should the developer implement this request?A . Use the <apex:relatedList> tag.B . Create a controller extension.C . Use the <apex:include> tag.D . Add...

March 17, 2022 No Comments READ MORE +

Which tool should be used to implement this requirement?

A developer has a requirement to create an Order When an Opportunity reaches a "Closed-Won" status. Which tool should be used to implement this requirement?A . Process BuilderB . Lightning ComponentC . LightningD . Apex triggerView AnswerAnswer: A

March 17, 2022 2 Comments READ MORE +

Which two statements are true about using the @testSetup annotation in an Apex test class? Choose 2 answers

Which two statements are true about using the @testSetup annotation in an Apex test class? Choose 2 answersA . Records created in the test setup method cannot be updated in individual test methods.B . Qo The @testSetup annotation is not supported when the GisTest(SeeAllData=True) annotation is used.C . Test data...

March 17, 2022 No Comments READ MORE +

How should a developer implement this feature?

When a user edits the Postal Code on an Account, a custom Account text field named "Timezone" must be update based on the values in a PostalCodeToTimezone__c custom object. How should a developer implement this feature?A . Build an Account Assignment Rule.B . Build an Account custom Trigger.C . Build...

March 16, 2022 No Comments READ MORE +

How can the developer make sure that validation rule violations are displayed?

A developer has a Visualforce page and custom controller to save Account records. The developer wants to display any validation rule violation to the user. How can the developer make sure that validation rule violations are displayed?A . Add cuatom controller attributes to display the message.B . Include <apex:message> on...

March 16, 2022 No Comments READ MORE +