How can the developer make sure that validation rule violations are displayed?
A developer has a VF 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 custom controller attributes to display the message.B . Include <apex:messages> on...
Which relationship implementation supports these requirements?
A developer has the following requirements: Calculate the total amount on an Order. Calculate the line amount for each Line Item based on quantity selected and price. Move Line Items to a different Order if a Line Item is not stock. Which relationship implementation supports these requirements?A . Line Items...
Which code segment shows the correct declaration of the class and methods?
A developer needs to implement a custom SOAP Web Service that is used by an external Web Application. The developer chooses to Include helper methods that are not used by the Web Application In the Implementation of the Web Service Class. Which code segment shows the correct declaration of the...
Which standard field is required when creating a new contact record?
Which standard field is required when creating a new contact record?A . LastNameB . NameC . AccountIdD . FirstNameView AnswerAnswer: A
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
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...
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...
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...
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...
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...