Which feature can the developer use?

A developer needs to know if all tests currently pass in a Salesforce environment. Which feature can the developer use? (Choose 2)A . ANT Migration ToolB . Workbench Metadata RetrievalC . Salesforce UI Apex Test ExecutionD . Developer ConsoleView AnswerAnswer: C, D

October 23, 2021 No Comments READ MORE +

What should the developer do to determine which object type (Account, Lead, or Contact, for example) to cast each sObject?

A method is passed a list of generic sObjects as a parameter. What should the developer do to determine which object type (Account, Lead, or Contact, for example) to cast each sObject?A . Use the first three characters of the sObject ID to determine the sObject type.B . Use the...

October 23, 2021 No Comments READ MORE +

What is an important consideration when developing in a multi-tenant environment?

What is an important consideration when developing in a multi-tenant environment?A . Governor limits prevent tenants from impacting performance in multiple orgs on the same instance.B . Unique domain names take the place of namespaces for code developed for multiple orgs on multiple instances.C . Polyglot persistence provides support for...

October 23, 2021 No Comments READ MORE +

What is a capability of the Developer Console?

What is a capability of the Developer Console?A . Execute Anonymous Apex code, Create/Edit code, view Debug Logs.B . Execute Anonymous Apex code, Run REST API, create/Edit code.C . Execute Anonymous Apex code, Create/Edit code, Deploy code changes.D . Execute Anonymous Apex code, Run REST API, deploy code changes.View AnswerAnswer:...

October 23, 2021 No Comments READ MORE +

How many accounts are in the org after this code is run?

A developer in a Salesforce org with 100 Accounts executes the following code using the Developer console: Account myAccount = new Account (Name = 'MyAccount'); Insert myAccount; For (Integer x = 0; x < 150; x++) {Account newAccount = new Account (Name='MyAccount' + x); try {Insert newAccount;} catch (Exception ex)...

October 23, 2021 No Comments READ MORE +

Which two methods should the developer use to avoid this error?

A developer encounters APEX heap limit errors in a trigger. Which two methods should the developer use to avoid this error? (Choose two.)A . Use the transient keyword when declaring variables.B . Query and store fields from the related object in a collection when updating related objects.C . Remove or...

October 23, 2021 No Comments READ MORE +

Where would a developer build a managed package?

Where would a developer build a managed package?A . Developer SandboxB . Unlimited EditionC . Partial Copy SandboxD . Developer EditionView AnswerAnswer: D

October 23, 2021 No Comments READ MORE +

How should a developer make sure that a child record on a custom object, with a lookup to the Account object, has the same sharing access as its associated account?

How should a developer make sure that a child record on a custom object, with a lookup to the Account object, has the same sharing access as its associated account?A . Create a Sharing Rule comparing the custom object owner to the account owner.B . Create a validation rule on...

October 23, 2021 No Comments READ MORE +

When loading data into an operation, what can a developer do to match records to update existing records? (Choose 2)

When loading data into an operation, what can a developer do to match records to update existing records? (Choose 2)A . Match an auto-generated Number field to a column in the imported file.B . Match an external Id Text field to a column in the imported file.C . Match the...

October 23, 2021 No Comments READ MORE +

A developer wrote a workflow email alert on case creation so that an email is sent to the case owner manager when a case is created. When will the email be sent?

A developer wrote a workflow email alert on case creation so that an email is sent to the case owner manager when a case is created. When will the email be sent?A . After Committing to database.B . Before Trigger execution.C . After Trigger execution.D . Before Committing to database.View...

October 23, 2021 No Comments READ MORE +