Salesforce PD2 - Review 1

Salesforce PD2 - Review 1

Professional Development

56 Qs

quiz-placeholder

Similar activities

AWS Dev

AWS Dev

Professional Development

60 Qs

Salesforce PD2 - Review 3

Salesforce PD2 - Review 3

Professional Development

60 Qs

SF Sales Cloud Quiz 2

SF Sales Cloud Quiz 2

Professional Development

60 Qs

Industries CPQ Developer Training II

Industries CPQ Developer Training II

Professional Development

55 Qs

Salesforce Admin

Salesforce Admin

Professional Development

60 Qs

Microsoft Azure Fundamentals AZ-900 ENG #1

Microsoft Azure Fundamentals AZ-900 ENG #1

University - Professional Development

55 Qs

AZ-900 Practice Test 3

AZ-900 Practice Test 3

Professional Development

51 Qs

CIW IBA Extreme Review - Part 1

CIW IBA Extreme Review - Part 1

7th Grade - Professional Development

52 Qs

Salesforce PD2 - Review 1

Salesforce PD2 - Review 1

Assessment

Quiz

Computers

Professional Development

Easy

Created by

rachel laurete

Used 32+ times

FREE Resource

56 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A Visualforce page loads slowly due to the large amount of data it displays

Which strategy can a developer use to improve the performance?

Use the transient keyword for the List variables used in the custom controller.

Use JavaScript to move data processing to the browser instead of the controller.

Use an <apex:actionPoller> in the page to load all of the data asynchronously.

Use lazy loading to load the data on demand, instead of in the controller's contructor.

2.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

After a Platform Event is defined in a Salesforce org, events can be published via which two mechanisms ?

Choose 2 answers

Internal Apps can use Outbound Messages

Internal Apps can use Process Builder

External Apps require the standard Streaming API.

External Apps use an API to publish event messages.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A lead developer for a Salesforce organization needs to develop a page-centric application that allows the user to interact with multiple objects related to a Contact. The application needs to implement a third-party JavaScript framework such as Angular, and must be made available in both Classic and Lightning Experience.
Given these requirements, what is the recommended solution to develop the application ?

Aura Components

Lightning Web Components

Visualforce

Lightning Experience Builder

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Universal Containers wants to use an external Web Service provided by a third-party vendor to validate the shipping and billing addresses are correct. The current vendor uses basic password authentication, but Universal Containers might switch to a different vendor who uses OAuth.
Which approach follows best practices and allows Universal Containers to switch vendors without updating the code to handle authentication?

Custom Setting (List)

Named Credential

Custom Metadata

Dynamic Endpoint

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which code statement includes an Apex method named updateAccounts in the class AccountController for use in a Lightning Web component?

import updateAccounts from '@salesforce/apex/AccountController';

import updateAccounts from 'AccountController';

import updateAccounts from 'AccountController.updateAccounts';

import updateAccounts from '@salesforce/apex/AccountController.updateAccounts';

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which statement is considered a best practice for writing bulk safe Apex Triggers?

Add records to collections and perform DML operations against these collections.

Perform all DML operations from within a Future Method.

Instead of DML statements, use the Database methods with allOrNone set to False.

Add LIMIT 50000 to every SOQL statement,

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Universal Containers has an existing automation where a custom record called Account Plan is created upon an Account being marked as a Customer. Recently, a Workflow Rule was added so that whenever an Account is marked as a Customer, a 'Customer Since' date field is update with today's date.

Now, since the addition of the Workflow Rule, two Account Plan records are created whenever the Account is marked as a Customer.

What might cause this to happen ?

The Apex Trigger responsible for the record creation does not use a static variable to ensure it only fires once.

The Process Builder responsible for the record creation fires before and after the Workflow rule.

The Workflow Rule responsible for the record creation fires twice because the 'Customer Since' field Update is marked as 'Re-evaluate Workflow Rules After Field Change'.

The Apex Trigger responsible for the record creation is not bulk safe and calls Insert of a for loop

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?