What modification is necessary on the Salesforce side?

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...

March 24, 2021 No Comments READ MORE +

Which options are valid?

The progress of an apex job queued is using the System.enqueueJob method and needs to be monitored. Which options are valid? (Choose two.)A . Use the Apex Jobs page in setupB . Query the Queueable Apex recordC . Query the AsyncApexJob recordD . Use the Scheduled Jobs page in setupView...

March 23, 2021 No Comments READ MORE +

REST uses___________.

REST uses___________.A . The HTTP classB . The HTTPRequest classC . The HTTPResponse classD . All of the aboveView AnswerAnswer: D

March 23, 2021 No Comments READ MORE +

During the order of execution of a Visualforce page GET request, what happens after this step? Evaluate constructors on controllers and extensions

During the order of execution of a Visualforce page GET request, what happens after this step? Evaluate constructors on controllers and extensionsA . Evaluate constructors and expressions on custom componentsB . Create view state if <apex: form> existsC . Send the HTML response to the browserD . Evaluate expressions, action...

March 23, 2021 No Comments READ MORE +

Which two queries are optimized for large data volumes?

Consider the following queries. For these queries, assume that there are more than 200,000 Account records. These records include soft-deleted records; that is, deleted records that are still in the Recycle Bin. Note that there are two fields that are marked as External Id on the Account. These fields are...

March 22, 2021 No Comments READ MORE +

Which statement is true regarding both Flow and Lightning Process? (Choose two.)

Which statement is true regarding both Flow and Lightning Process? (Choose two.)A . Can use Apex methods with the @lnvocableMethod annotationB . Are both server-side considerations in the Order of ExecutionC . Can use Apex that implements the Process.Plugin interfaceD . Are able to be embedded directly into Visualforce pagesView...

March 22, 2021 No Comments READ MORE +

Which of the follow be used together in DML operations (transaction)? (Choose two.)

Which of the follow be used together in DML operations (transaction)? (Choose two.)A . Acco u nt - Acco u ntS ha reB . Case - CaseCommentC . Opportunity - UserD . Account - OrderView AnswerAnswer: B,D

March 22, 2021 No Comments READ MORE +

What is the optimal way to fix this?

The test method above calls a web service that updates an external system with Account information and sets the Account's Integration_Updated__c checkbox to True when it completes. @isTest static void testAccountUpdate() { Account acct = new Account({Name = 'Test'); acct.Integration Updated_c = false; insert acct; CalloutUtil.sendAccountUpdate (acct.Id); Account acctAfter =...

March 22, 2021 No Comments READ MORE +

How can the developer generate the code coverage?

An Apex class does not achieve expected code coverage. The testSetup method explicitly calls a method in the Apex class. How can the developer generate the code coverage?A . Add @testVisible to the method in the class the developer is testing.B . Use system.assert() in testSetup to verify the values...

March 22, 2021 No Comments READ MORE +

Which scenario necessitates that the callout be made in an @future method?

A developer is writing code that requires making callouts to an external web service. Which scenario necessitates that the callout be made in an @future method?A . The callouts will be made in an Apex Test class.B . The callouts will be made in an Apex Trigger.C . The callout...

March 22, 2021 No Comments READ MORE +