Which two statements are valid considerations when using merged?
A company has been adding data to Salesforce and has not done a good Job of limiting the creation of duplicate Lead records. The developer is considering writing an Apex process to identify duplicates and merge the records together. Which two statements are valid considerations when using merged? Choose 2...
When importing and exporting data into Salesforce, which two statements are true? Choose 2 answers
When importing and exporting data into Salesforce, which two statements are true? Choose 2 answersA . Bulk API can be used to import large data volumes in development environments without bypassing the storage limits.B . Bulk API can be used to bypass the storage limits when importing large data volumes...
Which three operations affect the number of times a trigger can fire? Choose 3 answers
Which three operations affect the number of times a trigger can fire? Choose 3 answersA . Process FlowsB . Workflow RulesC . Criteria-based Sharing calculationsD . Email messagesE . Roll-Up Summary fieldsView AnswerAnswer: A, B, E
Which three statements are accurate about debug logs?
Refer to the following code snippet for an environment that has more than 200 Accounts belonging to the Technology' industry: Which three statements are accurate about debug logs? Choose 3 answersA . Debug log levels are cumulative, where FINE log level includes all events logged at the DEBUG, INFO, WARN,...
What to do now?
A developer migrated functionality from JavaScript Remoting to a Lightning web component and wants to use the existing getOpportunities() method to provide data. What to do now?A . The method must be decorated with (cacheable=true).B . The method must be decorated with @AuraEnabled.C . The method must return a JSON...
Since Aura application events follow the traditional publish-subscribe model, which method is used to fire an event?
Since Aura application events follow the traditional publish-subscribe model, which method is used to fire an event?A . ernit()B . fireEvent()C . fire()D . registerEvent()View AnswerAnswer: C
Which is the correct implementation?
A developer must create a CreditcardPayment class that provides an implementation of an existing Payment class. Public virtual class Payment { public virtual void makePayment(Decimal amount) { /*implementation*/ } } Which is the correct implementation?A . Public class CreditcardPayment extends Payment { public override void makePayment(Decimal amount) { /*implementation*/ }...
Which definition of the Apex method, to which the searchResults property is wired, should be used?
A Lightning component has a wired property, searchResults, that stores a list of Opportunities. Which definition of the Apex method, to which the searchResults property is wired, should be used?A . @AuraEnabled(cacheable=true) public static List<Opportunity> search(String term) { /* implementation*/ }B . @AuraEnabled(cacheable=true) public List<Opportunity> search(String term) { /*implementation*/ }C...
What are three capabilities of the <ltng: require> tag when loading JavaScript resources in Aura components? Choose 3 answers
What are three capabilities of the <ltng: require> tag when loading JavaScript resources in Aura components? Choose 3 answersA . Loading files from DocumentsB . One-time loading for duplicate scriptsC . Specifying loading orderD . Loading scripts In parallelE . Loading externally hosted scriptsView AnswerAnswer: B,C, D
Which Apex class contains methods to return the amount of resources that have been used for a particular governor, such as the number of DML statements?
Which Apex class contains methods to return the amount of resources that have been used for a particular governor, such as the number of DML statements?A . ExceptionB . MessagingC . OrgLimitsD . LimitsView AnswerAnswer: D