What is the transaction limit on the max Salesforce CPU time?
What is the transaction limit on the max Salesforce CPU time?A . 100 secondsB . 60 secondsC . 100 seconds (synchronous); 200 seconds (async)D . 10 seconds (synchronous); 60 seconds (async)E . There is no limitView AnswerAnswer: D
Which of the following elements can be members of a public group? (Choose three.)
Which of the following elements can be members of a public group? (Choose three.)A . TerritoriesB . Case TeamsC . UsersD . RolesE . ProfilesView AnswerAnswer: A,C,D
Which solution solves these requirements?
Universal Containers wants to use a Customer Community with Customer Community Plus licenses so their customers can track how many of containers they are renting and when they are due back. Many of their customers are global companies with complex Account hierarchies, representing various departments within the same organization. One...
Which code snippet will assert that the remote action returned the correct Account?
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 Id, Name, NumberOfEmployees FROM Account WHERE Name = :accountName]; return account; } } Consider the...
The Bulk API__________.
The Bulk 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 batchesB . Provides a powerful, convenient, and simple REST-based web services interface for...
How many Territories can an instance of salesforce have?
How many Territories can an instance of salesforce have?A . 400B . 200C . 1000D . 100E . 500View AnswerAnswer: E
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...
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...
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...
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...