What are three benefits of using static resources in Visualforce and Lightning Components? Choose 3 answers
What are three benefits of using static resources in Visualforce and Lightning Components? Choose 3 answersA . Static resource files can be packaged into a collection of related files in a zip or jar archive.B . Static resource files do not count against an organization's quota of data storage.C ....
Which option has the changes to make the component responsive for mobile and tablet devices?
A Lightning Component has a section that displays some information about an Account and it works well on the desktop, but users have to scroll horizontally to see the Description field output on their mobile devices and tablets. Which option has the changes to make the component responsive for mobile...
What change should be applied to the component?
A Lightning Component functions in preview mode and needs to be used inside a Lightning App Builder page, but it is not available. What change should be applied to the component?A . Refresh the sandbox and upgrade it to the latest API version.B . Delete the component, metadata, and Apex...
Given a list of Opportunity records named opportunity List, which code snippet is best for querying all Contacts of the Opportunity's Account?
Given a list of Opportunity records named opportunity List, which code snippet is best for querying all Contacts of the Opportunity's Account? A) B) C) D) A . Option AB . Option BC . Option CD . Option DView AnswerAnswer: A
What can a developer use to analyze and diagnose the problem in the Lightning Page?
A company has a Lightning Page with many Lightning Components, some that cache reference data. It is reported that the page does not always show the most current reference data. What can a developer use to analyze and diagnose the problem in the Lightning Page?A . Salesforce Lightning Inspector Storage...
What debugging approach using the Developer Console provides the fastest and most accurate mechanism to identify a specific component that may be returning an unexpected number of rows?
A developer receives a LimitException: Too many query rows: 50001 error when running code. What debugging approach using the Developer Console provides the fastest and most accurate mechanism to identify a specific component that may be returning an unexpected number of rows?A . Count the number of Row Limit warning...
What is the optimal method to implement this?
A company processes Orders within their Salesforce instance. When an Order's status changes to 'Paid' it must notify the company's order management system (OMS). The OMS exposes SOAP web service endpoints to listen for when to retrieve the data from Salesforce. What is the optimal method to implement this?A ....
How would you test a web service?
How would you test a web service?A . Use the @future annotation on the methodB . Call the WebService interfaceC . Web Services do not need to be testedD . Create a class that implements the WebServiceMock interfaceView AnswerAnswer: D
What should be used?
A developer built a Component to be used at the front desk for guests to self-register upon arrival at a kiosk. The developer is now asked to create a Component for the Utility Tray to alert Users whenever a guest has arrived at the front desk. What should be used?A...
Which technique may reduce heap size?
A developer encounters an error that states that the Apex heap size is exceeded. Which technique may reduce heap size?A . Add the transient keyword to the variable definitionB . Move the variable definition inside the scope of the functionC . Use static variables instead of instance variablesD . Use...