Which two conditions cause workflow rules to fire? Choose 2 answers
Which two conditions cause workflow rules to fire? Choose 2 answersA . Changing the territory assignments of accounts and opportunitiesB . Updating records using the bulk APIC . Converting leads to person accountsD . An Apex Batch process that changes field valuesView AnswerAnswer: B,D
What can used to delete components from production?
What can used to delete components from production?A . A change set deployment with the delete option checkedB . An ant migration tool deployment with destructivechanges xml file and the components to delete in the package .xml fileC . A change set deployment with a destructivechanges XML fileD . An...
Which exception type cannot be caught ?
Which exception type cannot be caught ?A . CalloutExceptionB . A custom ExceptionC . NoAccessExceptionD . LimitExceptionView AnswerAnswer: D
How should a developer write unit tests for a private method in an Apex class?
How should a developer write unit tests for a private method in an Apex class?A . Use the SeeAllData annotation.B . Add a test method in the Apex class.C . Use the TestVisible annotation.D . Mark the Apex class as global.View AnswerAnswer: C
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 standard field is required when creating a new contact record?
Which standard field is required when creating a new contact record?A . LastNameB . NameC . AccountIdD . FirstNameView AnswerAnswer: A
What is the result of the following code snippet?
What is the result of the following code snippet?A . 201 Accounts are inserted.B . 200 Accounts are inserted.C . 0 Accounts are inserted.D . 1 Account is inserted.View AnswerAnswer: C
Visualforce components so that the page matches the look and feel of Lightning Experience?
Which code should be used to update an existing Visualforce page that uses standard Visualforce components so that the page matches the look and feel of Lightning Experience?A . <apex:page lightningStyleSheets=”true”>B . <apex:page>C . <apex:commandButton styleClass="slds-vf-button_brand" value="Refresh the Page">D . apex:actionStatusView AnswerAnswer: A
Which SOSL statement should the developer use?
A developer wants to retrieve the Contacts and Users with the email address '[email protected]'. Which SOSL statement should the developer use?A . FIND {[email protected]} IN Email Fields RETURNING Contact (Email), User (Email)B . FIND {Email = '[email protected]'} IN Contact, UserC . FIND {Email = '[email protected]'} RETURNING Contact (Email), User (Email)D...
Which two statements enable the developer to save the records to the database without an Id?
A developer needs to save a List of existing Account records named myAccounts to the database, but the records do not contain Salesforce Id values. Only the value of a custom text field configured as an External ID with an API name of Foreign_Key__c is known. Which two statements enable...