Which three data types can a SOQL query return? Choose 3 answers
Which three data types can a SOQL query return? Choose 3 answersA . sObjectB . DoubleC . LongD . ListE . IntegerView AnswerAnswer: A, D, E Explanation: A SOQL query can return the following data types: Option A: sObject A SOQL query can return a single sObject when the query...
Which three resources in an Aura component can contain JavaScript functions? Choose 3 answers
Which three resources in an Aura component can contain JavaScript functions? Choose 3 answersA . RendererB . ControllerC . styleD . HelperE . DesignView AnswerAnswer: A, B, D Explanation: In an Aura component, JavaScript functions can be included in the following resources: Controller (.js file): Handles events triggered by user...
What is the value of x when it is written to the debug log?
Refer to the following Apex code: Integer x=0; do x=1; x++; } while (x< 1); System.debug (x); What is the value of x when it is written to the debug log?A . 0B . 1C . 2D . 3View AnswerAnswer: C
Assuming that name is a String obtained by an <apex:inpucText> tag on a Visualforce page, which two SOQL queries performed are safe from SOQL injection? Choose 2 answers
Assuming that name is a String obtained by an <apex:inpucText> tag on a Visualforce page, which two SOQL queries performed are safe from SOQL injection? Choose 2 answers A) B) C) D) A . Option AB . Option BC . Option CD . Option DView AnswerAnswer: A, C Explanation: Option...
What can be easily developed using the Lightning Component framework?
What can be easily developed using the Lightning Component framework?A . Salesforce Classic user Interface pagesB . Lightning PagesC . Salesforce integrationsD . Customized JavaScript buttonsView AnswerAnswer: B Explanation: The Lightning Component framework is used to develop: Option B: Lightning Pages Lightning Components can be used to build custom components...
Which automation allows the developer to satisfy this requirement in the most efficient manner?
A developer is asked to prevent anyone other than a user with Sales Manager profile from changing the Opportunity Status to Closed Lost if the lost reason is blank. Which automation allows the developer to satisfy this requirement in the most efficient manner?A . An approval process on the Opportunity...
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) B) C) D) A . Option AB . Option BC . Option...
What is the best practice to get the sum of all Order Line item totals on the Order record?
Universal Containers has implemented an order management application. Each Order can have one or more Order Line items. The Order Line object is related to the Order via a master-detail relationship. For each Order Line item, the total price is calculated by multiplying the Order Line item price with the...
Which Lightning Web Component custom event property settings enable the event to bubble up the containment hierarchy and cross the Shadow DOM boundary?
Which Lightning Web Component custom event property settings enable the event to bubble up the containment hierarchy and cross the Shadow DOM boundary?A . bubbles: true, composed: trueB . bubbles: true, composed: falseC . bubbles: false, composed: falseD . bubbles: false, composed: trueView AnswerAnswer: A Explanation: To enable a custom...
How should this be accomplished?
A developer is creating an app that contains multiple Lightning web components. One of the child components is used for navigation purposes. When a user clicks a button called Next in the child component, the parent component must be alerted so it can navigate to the next page. How should...