The maximum view state size of a visualforce page is______________.

The maximum view state size of a visualforce page is______________.A . 1mbB . 256kbC . 165kbD . 65kbE . 135kbView AnswerAnswer: E

March 26, 2021 No Comments READ MORE +

What should the developer use to store and package the custom configuration settings for the app?

A developer Is asked to develop a new AppExthange application. A feature of the program creates Survey records when a Case reaches a certain stage and Is of a certain Record Type. This feature needs to be configurable, as different Salesforce instances require Surveys at different times. Additionally, the out-of-the-box...

March 26, 2021 No Comments READ MORE +

What could be the cause of this issue?

A developer writes the following Apex trigger so that when a Case is closed, a single Survey record is created for that Case. The issue is that multiple Survey_c records are being created per Case. What could be the cause of this issue?A . A user is creating the record...

March 25, 2021 No Comments READ MORE +

Which design resource configuration should be used?

A company wants to build a custom Lightning Component that will display a specified Account Field Set and that can only be added to the Account record page. Which design resource configuration should be used?A . <design:component label="Account FS Component"> <design:attribute name="fieldSetName" Label="Field Set Name" /> <sfdc:objects> <sfdc:object>FieldSet</sfdc:object> </sfdc:objects> </design:component>B...

March 25, 2021 No Comments READ MORE +

If you have a method "doStuff(List<sObject> records)", which is a valid call?

If you have a method "doStuff(List<sObject> records)", which is a valid call?A . doStuff([Select Id From Account]);B . doStuff(List<Account> records);C . doStuff(Account acct);D . doStuff(sObject obj);View AnswerAnswer: A

March 25, 2021 No Comments READ MORE +

What is the most efficient way to Query such information?

As part of a custom development, a developer creates a Lightning Component to show how a particular opportunity progresses over time. The component must display the date stamp when any of the following fields change: • Amount Probability, Stage, or Close Date What is the most efficient way to Query...

March 25, 2021 No Comments READ MORE +

Which code snippet will assert that the remote action returned the correct Account?

Consider the Apex class above that defines a RemoteAction used on a Visualforce search page. Global with sharing class MyRemoter { public String accountName { get; set; } public static Account account { get; set; } public AccountRemoter(} {} @RemoteAction global static Account getAccount (String acccuntName) { account = [SELECT...

March 25, 2021 No Comments READ MORE +

What should the developer use to ensure error messages are properly displayed?

Users report that a button on a custom Lightning Web Component is not working. However, there are no other details provided. What should the developer use to ensure error messages are properly displayed?A . Add the <apex:messages/> tag to the component.B . Use the Database method with allOrNone set to...

March 24, 2021 1 Comment READ MORE +

In which of the following scenarios would it be acceptable to use programmatic sharing instead of declarative sharing? (Choose three.)

In which of the following scenarios would it be acceptable to use programmatic sharing instead of declarative sharing? (Choose three.)A . Every record created by sales users needs to be visible to their respective managerB . Poor performance when using native sharing componentsC . Team functionality is required on custom...

March 24, 2021 No Comments READ MORE +

What is the transaction limit on the number of Apex jobs added to the queue?

What is the transaction limit on the number of Apex jobs added to the queue?A . 100B . 150C . 50D . 200E . There is no limitView AnswerAnswer: C

March 24, 2021 No Comments READ MORE +