While developing an Apex class with custom search functionality that will be launched from a Lightning Web Component, how can the developer ensure only records accessible to the currently logged in user are displayed?
While developing an Apex class with custom search functionality that will be launched from a Lightning Web Component, how can the developer ensure only records accessible to the currently logged in user are displayed?A . Use the inherited sharing keyword.B . Use the WITH SECURITY_ENFORCED clause within the SOQL.C ....
According to the order of execution rules, which step happens first?
A developer created a trigger on a custom object. This custom object also has some dependent pick lists. According to the order of execution rules, which step happens first?A . Old values are overwritten with the new record values.B . JavaScript validation is run in the browser,C . System validation...
Which two tools can they use to run a script that deploys to a sandbox?
A development team wants to use a deployment script to automatically deploy to a sandbox during their development cycles. Which two tools can they use to run a script that deploys to a sandbox? Choose 2 answersA . VSCodeB . Developer ConsoleC . Change SetsD . SFOX CLIView AnswerAnswer: A,...
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...