Which two statements are true regarding these issues and resolution?

A large company uses Salesforce across several departments. Each department has its own Salesforce Administrator. It was agreed that each Administrator would have their own sandbox in which to test changes. Recently, users notice that fields that were recently added for one department suddenly disappear without warning. Also, Workflows that...

June 1, 2022 No Comments READ MORE +

Which SOQL query is valid on the Customer_Transaction__b Big Object?

Of Universal Containers uses Big Objects to store almost a billion customer transactions called Customer_Transaction__b. These are the fields on Customer_Transaction__b: Account__c Program__ยข Points_Earned__c Location__c Transaction_Date__c The following fields have been identified as Index Fields for the Customer_Transaction__b object: Account__c, Program__c, and Transaction_Date__c . Which SOQL query is valid on...

June 1, 2022 No Comments READ MORE +

What is the best practice to initialize a Visualforce page in a test class?

What is the best practice to initialize a Visualforce page in a test class?A . Use Test.setCurrentpage,MyTestPage;B . Use Test.currentpage, getParameter, put (MyTestPage);C . Use Test, setCurrentPage(Page.MyTestPage);D . Use controller,currentPage, setPage (MyTestPageView AnswerAnswer: C

June 1, 2022 No Comments READ MORE +

During the Visualforce Page execution, what step follows immediately after "Evaluate constructors on controller and extensions"?

During the Visualforce Page execution, what step follows immediately after "Evaluate constructors on controller and extensions"?A . Create the view stateB . Evaluate constructors, extensions, and expression on attribute definitions on any custom components presentC . Evaluate expressions, <apex:page> attribute actions, and other method calls (getters/setters) on main pageD ....

June 1, 2022 No Comments READ MORE +

What should be considered in order to do this?

A developer wants to use an Aura Component with a Custom Action. What should be considered in order to do this?A . A default value must be provided for each component attribute marked as required.B . The component must implement the force:lightningQuickActionButton interface.C . The component's JavaScript controller must handle...

June 1, 2022 No Comments READ MORE +

Which component should be added to the Visualforce page to display the message?

messages are rendering on the page . Which component should be added to the Visualforce page to display the message? A) B) C) D) E. Option A F. Option B G. Option C H. Option DView AnswerAnswer: C

June 1, 2022 No Comments READ MORE +

What is a consideration when testing batch Apex? (Choose two.)

What is a consideration when testing batch Apex? (Choose two.)A . Test methods must execute the batch with a scope size of less than 200 recordsB . Test methods must call the batch execute() method onceC . Test methods must use the @isTest (SeeAIIData=true) annotationD . Test methods must run...

May 31, 2022 No Comments READ MORE +

What debugging approach using the Developer Console provides the fastest and most accurate mechanism to identify a specific component that may be returning an unexpected number of rows?

A developer receives a LimitException: Too many query rows: 50001 error when running code. What debugging approach using the Developer Console provides the fastest and most accurate mechanism to identify a specific component that may be returning an unexpected number of rows?A . Count the number of Row Limit warning...

May 31, 2022 No Comments READ MORE +

Which statement should be used to perform the DML necessary to insert new records and update existing records in a List of Order__c records?

A company has a custom object, Order__c, that has a required, unique, external ID field called Order_Number__c . Which statement should be used to perform the DML necessary to insert new records and update existing records in a List of Order__c records?A . upsert orders;B . merge orders;C . merge...

May 31, 2022 No Comments READ MORE +

What is the optimal way to store and retrieve the list?

A managed package uses a list of country ISO codes and country names as references data in many different places. managed package Apex code. What is the optimal way to store and retrieve the list?A . Store the information in Custom Metadata and query it with SOQC . Store the...

May 31, 2022 No Comments READ MORE +