Which Salesforce feature allows a developer to see when a user last logged in to Salesforce if real-time notification is not required?
Which Salesforce feature allows a developer to see when a user last logged in to Salesforce if real-time notification is not required?A . Asynchronous Data Capture EventsB . Developer LogC . Event Monitoring LogD . Calendar EventsView AnswerAnswer: C
Which code displays the contents of a Visualforce page as a PDF?
Which code displays the contents of a Visualforce page as a PDF?A . <apex:page contentType="pdf">B . <apex:page rendersAs="application/pdf">C . <apex:page contentType="application/pdf">D . <apex:page renderAs="pdf">View AnswerAnswer: D Explanation: https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_output_pdf_renderas.htm You can generate a downloadable, printable PDF file of a Visualforce page using the PDF rendering service. Convert a page to PDF...
Which action will allow the developer to relate records in the data model without knowing the Salesforce ID?
A developer needs to join data received from an integration with an external system with parent records in Salesforce. The data set does not contain the Salesforce IDs of the parent records, but it does have a foreign key attribute that can be used to identify the parent. Which action...
Which three code lines are required to create a Lightning component on a Visualforce page? Choose 3 answers
Which three code lines are required to create a Lightning component on a Visualforce page? Choose 3 answersA . $Lightning.createComponentB . <apex:slds/>C . $Lightning.useComponentD . $Lightning.useE . <apex:includeLightning/>View AnswerAnswer: A,D,E
What is the recommend way to accomplish this?
A developer created a weather app that contains multiple Lightning web components. One of the components, called Toggle, has a toggle for Fahrenheit or Celsius units. Another component, called Temperature, displays the current temperature in the unit selected in the Toggle component When a user toggles from Fahrenheit to Celsius...
What is the result of the following code?
What is the result of the following code?A . The record will not be created and a exception will be thrown.B . The record will be created and a message will be in the debug log.C . The record will not be created and no error will be reported.D ....
Which method allows access to the price book?
A developer wants to get access to the standard price book in the org while writing a test class that covers an OpportunityLineItem trigger. Which method allows access to the price book?A . Use Test.loadData ( )and a static resource to load a standard price bookB . Use @TestVisible to...
Which three per-transaction limits have higher governor limits in asynchronous Apex transactions?
Which three per-transaction limits have higher governor limits in asynchronous Apex transactions?A . Maximum CPU timeB . Maximum heap sizeC . Total SOQL queriesD . Maximum execution timeE . Records returned by SOQLView AnswerAnswer: A,C,E
Which Lightning code segment should be written to declare dependencies on a Lightning component, c:accountList, that is used in a Visualforce page?
Which Lightning code segment should be written to declare dependencies on a Lightning component, c:accountList, that is used in a Visualforce page? A) B) C) D) A . Option AB . Option BC . Option CD . Option DView AnswerAnswer: A
What are three characteristics of change set deployments? Choose 3 answers
What are three characteristics of change set deployments? Choose 3 answersA . Change sets can only be used between related organizations.B . Change sets can be used to transfer records.C . Sending a change set between two orgs requires a deployment connection.D . Change sets can deploy custom settings data.E...