A company exposes a REST web service and wants to establish two-way SSL between Salesforce and the REST web service. A certificate signed by an appropriate certificate authority has been provided to the developer. What modification is necessary on the Salesforce side? (Choose two.)
A. Create an entry for the certificate in Certificate and Key Management
B. Update the code to use HttpRequest.setClientCertificateName()
C. Configure two-factor authentication with the provided certificate
D. Update the code to use HttpRequest.setHeaderQ to set an Authorization header.
What is the transaction limit for the number of DML statements allowed?
A. 20
B. 2,000
C. 100 (synchronous), 200 (async)
D. 200 (synchronous), 100 (async)
E. 150
The Metadata API___________.
A. Is based on REST principles and is optimized for loading or deleting large sets of data. You can use it to query, queryAII, insert, update, upsert, or delete many records asynchronously by submitting batches
B. Provides a powerful, convenient, and simple REST-based web services interface for interacting with Salesforce. Its advantages include ease of integration and development, and it's an excellent choice of technology for use with mobile applications and web projects
C. Is used to create, retrieve, update or delete records, such as accounts, leads, and custom objects, and allows you to maintain passwords, perform searches, and much more
D. Is used to retrieve, deploy, create, update, or delete customizations for your org. The most common use is to migrate changes from a sandbox or testing org to your production environment
Refer to re code segment above.
When following best practices for writing Apex taggers, which two lots are wrong or cause for concern? Choose 2 answers
A. Line 6 B. Line 11
C. Line 16
D. Line 20
A developer created a Lightning web component that uses a lightning-record-edit-form to collect information about Leads. Users complain that they only see one error message at a time when they save a Lead record.
Which best practice should the developer use to perform the validations, and allow more than one error message to be displayed simultaneously?
A. Custom validation rules
B. Process Builder
C. Client-side validation
D. Apex REST
A developer is experiencing issues with a Lightning web component. The component must surface information about Opportunity owned by the currently logged-in user.
When the component is rendered, the following message is displayed: `'Error retrieving data''
Which modification should be implemented to the Apex class to overcome the issue?
A. Edit the code to use the without sharing keyword in the Apex class.
B. Use the Cacheable=True attribute in the Apex method.
C. Ensure the OWD for the Opportunity object is public.
D. Use the Continuation=true attribute in the Apex method.
Which two queries are selective SOQL queries and can be used for a large data set of 200,000 Account records? Choose 2 answers
A. SELECT id FROM ACCOUNT WHERE Name = !: ' '
B. SELECT id FROM ACCOUNT WHERE Name = Null
C. SELECT id FROM ACCOUNT WHERE Name = Null AND Customer_Number_c= 'ValueA'
D. SELECT id FROM ACCOUNT WHERE id IN (list of Account Ids)
A Lightning web component exists in the system and displays information about the record in context as a modal. Salesforce administrators need to use this component within the Lightning App Builder.
Which two settings should the developer configure within the xml resource file?
Choose 2 answers
A. Set the IsExposed attribute to True.
B. Set the IsVisible attribute to True.
C. Specify the target to be lightning__RecordPage.
D. Specify the target to be lightning__AppPage.
Universal Containers (UC) has an CRP system that stores customer information.
When an Account is created in Salesforce, the FRP system's REST endpoint for creating new customers must automatically be called with the Account information, If the call to the ERP system fails, the Account should still be created. Accounts in UC org are only created, one at a time, by users in the customer on-boarding department.
What should a developer to make the call to the CRP system's REST endpoint7
A. REST call from JavaScript
B. Headless Quick Action
C. apex Continuation
D. call a Queueable from a Trigger
A developer is creating a Lightning web component that can be added to a Lightning App Page and displayed when the page Is rendered in desktop and mobile phone format. To ensure a great mobile experience, the developer chooses to use the SLDS grid utility.
Which two Lighting web components should the developer implement to ensure the application Is mobile-ready? Choose 2 answers
A.
B.
C.
D.