Right answer is A Lightning Inspector
Which two best practices should the developer Implement to optimize this code?
Choose 2 answers
B, D
A developer wrote an Apex method that makes an HTTP callout to an external system to get
specialized data when a button is clicked from a custom Lightning web component on the Account
record page.
Recently, users have complained that it takes longer than desired for the data to appear on the page
after clicking the button.
What should the developer use to troubleshoot this issue?
C
Right answer is A Lightning Inspector
A business currently has a process to manually upload orders from its external Order Management
System (OMS) into Salesforce.
This is a labor intensive process since accounts must be exported out of Salesforce to get the IDs. The
upload file must be updated with the correct account IDs to relate the orders to the corresponding
accounts.
Which two recommendations should make this process more efficient?
Choose 2 answers
B, C
Consider the following code snippet:
Choose 2 answers
A, D
Users upload .csv files in an external system to create account and contact records in Salesforce. Up
to 200 records can be created at a time. The users need to wait for a response from Salesforce in the
external system, but the data does not need to synchronize between the two systems.
Based on these requirements, which method should a developer use to create the records in
Salesforce?
D
Which annotation should a developer use on an Apex method to make it available to be wired to a
property In a Lightning web component?
B
D ... B is a specific request
A developer is tasked with creating a Lightning web component that allows users to create a Case for
a selected product, directly from a custom Lightning page. The input fields in the component are
displayed in a non-linear fashion on top of an image of the product to help the user better
understand the meaning of the fields.
Which two components should a developer use to implement the creation of the Case from the
Lightning web component?
Choose 2 answers
A, C
A and D ... why should you use c when is a less powerfull version of A
A developer is building a Lightning web component that searches for Contacts and must
communicate the search results to other Lightning web components when the search completes.
What should the developer do to implement the communication?
C
Consider the following code snippet:
A developer created the following test class to provide the proper code coverage for the snippet
above:
However, when the test runs, no data is returned and the assertion fails.
However, when the test runs, no data is returned and the assertion fails.
Which edit should the developer make to ensure the test class runs successfully?
D
Universal Containers (UC) has custom Order and Order Line objects that represent orders placed by
its customers.
A developer has a new requirement that UC's external enterprise resource planning (ERP) system
must be able to integrate with Salesforce to create orders for existing customers in Salesforce
whenever an order is placed in the ERP system.
What should the developer use to create the orders in Salesforce7
A
A developer recently released functionality to production that performs complex commission
calculations in Apex code called from an Opportunity trigger. Users report that the calculations seem
incorrect because the values they see for commissions are wrong.
The developer has representative test data in their developer sandbox.
Which three tools or techniques should the developer use to execute the code and pause it at key
lines to visually inspect values of various Apex variables?
Choose 3 answers
A, B, D
BCD B, visual Studio Code
C. Breakpoints
D. Apex Replay Debugger
Consider the following code snippet:
Users of this Visualforce page complain that the page does a full refresh every time the Search
button is pressed.
What should the developer do to ensure that a partial refresh is made so that only the section
identified with opportunity List is re-drawn on the screen?
C
Ans is B
https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_compref_actionRegion.htm
Note that an <apex:actionRegion> component only defines which components the server processes during a request—it doesn’t define what areas of the page are re-rendered when the request completes
A developer is creating a Lightning web component to display a calendar. The component will be
used in multiple countries. In some locales, the first day of the week is a Monday, or a Saturday, or a
Sunday.
What should the developer do to ensure the calendar displays accurately for users in every locale?
C
import firstDayOfWeek from '@salesforce/i18n/firstDayOfWeek';
A developer used custom settings to store some configuration data that changes occasionally.
However, tests are now failing in some of the sandboxes that were recently refreshed.
What should be done to eliminate this issue going forward?
B
As part of point-to-point integration, a developer must call an external web service which, due to
high demand, takes a long time to provide a response. As part of the request, the developer must
collect key inputs from the end user before making the callout.
Which two elements should the developer use to implement these business requirements?
Choose 2 answers
A, D
A B b because it is standard
B Option is misspelled, it should be screen flow
but the answers should be A and D. screen flow doesn't support Continuation object.
It is missing the code snippet.