What will happen when the mass update occurs?

An environment has two Apex Triggers: an after-update trigger on Account and an after-update trigger on Contact. The Account after-update trigger fires whenever an Account's address is updated, and it updates every associated Contact with that address. The Contact after-update trigger fires on every edit, and it updates every Campaign...

April 26, 2022 No Comments READ MORE +

Which tag should the developer use inside the component?

A developer created a custom component to display an HTML table. The developer wants to be able to use the component on different Visualforce Pages and specify different header text for the table. Which tag should the developer use inside the component?A . <apex:variable>B . <apex:define>C . <apex:param>D . <apex:attribute>View...

April 26, 2022 No Comments READ MORE +

A custom field Exec_Count_c of type Number is created on an Account object. An account record with value of "1" for a: Exec__Count_c is saved. A workflow field update is defined on the Exec_Count_c field, to increment its value every time an account record is created or updated.

A custom field Exec_Count_c of type Number is created on an Account object. An account record with value of "1" for a: Exec__Count_c is saved. A workflow field update is defined on the Exec_Count_c field, to increment its value every time an account record is created or updated. The following...

April 26, 2022 No Comments READ MORE +

What are two alternatives to implement the integration and protect against malicious calls to Heroku app's endpoint?

Universal Containers needs to integrate with a Heroku service that resizes product images submitted by users. What are two alternatives to implement the integration and protect against malicious calls to Heroku app's endpoint? Choose 2 answersA . Create a trigger that uses an @future Apex HTTP callout passing JSON serialized...

April 26, 2022 No Comments READ MORE +

What is the correct syntax for calling a controller action from a Visualforce page and updating part of the page once the action is completed? (Choose two.)

What is the correct syntax for calling a controller action from a Visualforce page and updating part of the page once the action is completed? (Choose two.)A . <apex : commandFunction action=?l { ! Save} " value="Save" rendered^"thePageBlock"/>B . <apex: actionFunction action=" { ! Save} " name=!,Save" rerender=l,thePageBlock1'/>C . <apex:commandButton...

April 25, 2022 No Comments READ MORE +

Which is a valid Apex REST Annotation? (Choose two.)

Which is a valid Apex REST Annotation? (Choose two.)A . @Http PatchB . @HttpDeleteC . ©HttpUpsertD . @HttpActionView AnswerAnswer: A,B

April 25, 2022 No Comments READ MORE +

Code must have X% overall code coverage.

Code must have X% overall code coverage.A . X= 100B . X = 75C . X = 65D . X = 50View AnswerAnswer: B

April 25, 2022 No Comments READ MORE +

Which method of integration should the application use?

A corporation has many different Salesforce orgs, with some different objects and some common objects, and wants to build an application that can create, retrieve, and update common object records in all of the different orgs. Which method of integration should the application use?A . Apex REST Web ServiceB ....

April 25, 2022 No Comments READ MORE +

How should a developer verify that a specific Account record is being tested in a test class for a visualforce controller?

How should a developer verify that a specific Account record is being tested in a test class for a visualforce controller?A . Insert the Account in the test class, instantiate the page reference in the test class, then use System.currentPageReference().getParameters{}.put() to set the Account IC . Instantiate the page reference...

April 25, 2022 No Comments READ MORE +

If the "PageReference.setRedirect" Apex function is set to True, what type of request is made?

If the "PageReference.setRedirect" Apex function is set to True, what type of request is made?A . Get requestB . Postback requestC . If PageReference points to the same controller and subset of extensions, postback request, otherwise get requestView AnswerAnswer: A

April 25, 2022 No Comments READ MORE +