Summer Special Discount 60% Offer - Ends in 0d 00h 00m 00s - Coupon code: brite60

Platform Developer I (SP23) Question and Answers

Platform Developer I (SP23)

Last Update Apr 17, 2024
Total Questions : 235

We are offering FREE PDI Salesforce exam questions. All you do is to just go and sign up. Give your details, prepare PDI free exam questions and then go for complete pool of Platform Developer I (SP23) test questions that will help you more.

PDI pdf

PDI PDF

$40  $99.99
PDI Engine

PDI Testing Engine

$48  $119.99
PDI PDF + Engine

PDI PDF + Testing Engine

$64  $159.99
Questions 1

A developer is creating an app that contains multiple Lightning web components.

One of the child components is used for navigation purposes. When a user click a button called.. component, the parent component must be alerted so it can navigate to the next page.

How should this be accomplished?

Options:

A.  

Fire a notification.

B.  

Update a property on the parent.

C.  

Call a method in the Apex controller.

D.  

Create a custom event.

Discussion 0
Questions 2

What is the value of the Trigger.old context variable in a before insert trigger?

Options:

A.  

A list of newly created sObjects without IDs

B.  

null

C.  

Undefined

D.  

An empty list of sObjects

Discussion 0
Questions 3

A company wants to implement a new call center process for handling customer service calls. It requires service reps to ask for the caller’s account number before proceeding with the rest of their call script.

Following best practices, what is the optimal approach to satisfy this requirmrnt?

Options:

A.  

Flow Builder

B.  

Approvals

C.  

Apex trigger

D.  

Einstein Next Best Action

Discussion 0
Questions 4

What can be easily developed using the Lightning Component framework?

Options:

A.  

Customized JavaScript buttons

B.  

Salesforce Classic user Interface pages

C.  

Lightning Pages

D.  

Salesforce integrations

Discussion 0
Questions 5

In the Lightning UI, where should a developer look to find information about a Paused Flow Interview?

Options:

A.  

On the Paused Row Interviews related List for a given record

B.  

In the Paused Interviews section of the Apex Flex Queue

C.  

In the system debug log by Altering on Paused Row Interview

D.  

On the Paused Row Interviews component on the Home page

Discussion 0
Questions 6

A developer is creating a Lightning web component to showa list of sales records.

The Sales Representative user should be able to see the commission field on each record. The Sales Assistant user should be able to see all

fields on the record except the commission field.

How should this be enforced so that the component works for both users without showing any errors?

Options:

A.  

Use WITH SECURITY_ENFORCED in the SOQL that fetches the data for the component.

B.  

Use Security. stripInaccessible to remove fields inaccessible to the current user.

C.  

Use Lightning Data Service to get the collection of sales records.

D.  

Use Lightning Locker Service to enforce sharing rules and field-level security.

Discussion 0
Questions 7

Which three steps allow a custom SVG to be included in a Lightning web component? Choose 3 answers

Options:

A.  

Upload the SVG as a static resource.

B.  

Import the static resource and provide a getter for it in JavaScript.

C.  

Reference the getter in the HTML template.

D.  

Reference the import in the HTML template.

E.  

Import the SVG as a content asset file.

Discussion 0
Questions 8

Universal Containers recently transitioned from Classic to Lighting Experience. One of its business processes requires certain value from the opportunity object to be sent via HTTP REST callout to its external order management system based on a user-initiated action on the opportunity page. Example values are as follow

  • Name
  • Amount
  • Account

Which two methods should the developer implement to fulfill the business requirement? (Choose 2 answers)

Options:

A.  

Create a Lightning component that performs the HTTP REST callout, and use a Lightning Action to expose the component on the Opportunity detail page.

B.  

Create a Process Builder on the Opportunity object that executes an Apex immediate action to perform the HTTP REST callout whenever the Opportunity is updated.

C.  

Create an after update trigger on the Opportunity object that calls a helper method using @Future(Callout=true) to perform the HTTP REST callout.

D.  

Create a Visualforce page that performs the HTTP REST callout, and use a Visualforce quick action to expose the component on the Opportunity detail page.

Discussion 0
Questions 9

A Salesforce Administrator is creating a record-triggered flow. When certain criteria are met, the flow must call an Apex method to execute complex validation involving several types of objects.

When creating the Apex method, which annotation should a developer use to ensure the method

Can be used within the flow?

Options:

A.  

@future

B.  

@RemoteAction

C.  

@InvocableMethod

D.  

@AuraEnaled

Discussion 0
Questions 10

Which two scenarios require an Apex method to be called imperatively from a Lightning web component?

Choose 2 answer

Options:

A.  

Calling a method that makes a web service callout

B.  

Calling a method that is not annotated with cacheable-true

C.  

Calling a method with the click of a button

D.  

Calling a method that is external to the main controller for the Lightning web component

Discussion 0
Questions 11

When importing and exporting data into Salesforce, which two statements are true?

Choose 2 answers

Options:

A.  

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 in development environments.

C.  

Developer and Developer Pro sandboxes have different storage limits.

D.  

Data import wizard is a client application provided by Salesforce.

Discussion 0
Questions 12

What should a developer use to fix a Lightning web component bug in a sandbox?

Options:

A.  

Developer Console

B.  

VS Code

C.  

Force.com IDE

D.  

Execute Anonymous

Discussion 0
Questions 13

A developer wants to import 500 Opportunity records into a sandbox. Why should the developer choose to use data Loader instead of Data Import Wizard?

Options:

A.  

Data Loader runs from the developer's browser.

B.  

Data Import Wizard does not support Opportunities.

C.  

Data Loader automatically relates Opportunities to Accounts.

D.  

Data Import Wizard cannot import all 500 records.

Discussion 0
Questions 14

which statement is true regarding execution order when triggers are associated to the same object and event?

Options:

A.  

Trigger execution order cannot be guaranteed.

B.  

executed In the order they are modified.

C.  

Triggers are executed alphabetically by trigger name.

D.  

Triggers are executed in the order they are created.

Discussion 0
Questions 15

An org tracks customer orders on an Order object and the items of an Order on the Line Item object. The Line Item object has a MasterDetail relationship to the order object. A developer has a requirement to calculate the order amount on an Order and the line amount on each Line item based on quantity and price.

What is the correct implementation?

Options:

A.  

Implement the line amount as a numeric formula field and the order amount as a roll-up summary field.

B.  

Write a single before trigger on the Line Item that calculates the item amount and updates the order amount on the Order.

C.  

Implement the Line amount as a currency field and the order amount as a SUM formula field.

D.  

Write a process on the Line item that calculates the item amount and order amount and updates the filed on the Line Item and the order.

Discussion 0
Questions 16

Universal Containers has a Visualforce page that displays a table of every Container_c. being ……. Is falling with a view state limit because some of the customers rent over 10,000 containers.

What should a developer change about the Visualforce page to help with the page load errors?

Options:

A.  

Use Lazy loading and a transient List variable.

B.  

Use JavaScript remoting with SOQL Offset.

C.  

Implement pagination with an OffsetController.

D.  

Implement pagination with a StandardSetController,

Discussion 0
Questions 17

A developer needs to have records with specific field values in order to test a new Apex class.

What should the developer do to ensure the data is available to the test?

Options:

A.  

Use Anonymous Apex to create the required data.

B.  

Use Test.loadData < > and reference a CSV file in a static resource.

C.  

Use SOQL to query the org for the required data.

D.  

Use Test.loadData and reference a JSON file in Documents.

Discussion 0
Questions 18

Universal Containers has implemented an order management application. Each Order can have one or more Order Line items. The Order Line object is related to the Order via a master-detail relationship. For each Order Line item, the total price is calculated by multiplying the Order Line item price with the quantity ordered.

What is the best practice to get the sum of all Order Line item totals on the Order record?

Options:

A.  

Roll-up summary field

B.  

Quick action

C.  

Apex trigger

D.  

Formula field

Discussion 0
Questions 19

A developer has identified a method in an Apex class that performs resource intensive actions in memory by iterating over the result set of a SOQL statement on the account. The method also performs a DML statement to save the changes to the datadase.

Which two techniques should the developer implement as a best practice to ensure transaction control and avoid exceeding governor limits?

Choose 2 answers

Options:

A.  

Use partial DML statements to ensure only valid data is committed.

B.  

Use the System,Limit classto monitor the current CPU governor limit consumption.

C.  

Use the Database,Savepoint method to enforce database integrity.

D.  

D.  

Use the Reedonly annotation to bypass the number of rows returned by a SOQL.

Discussion 0
Questions 20

For which three items can a trace flag be configured?

Choose 3 answers

Options:

A.  

Process Builder

B.  

Visualforce

C.  

Apex Class

D.  

Apex Trigger

E.  

User

Discussion 0
Questions 21

What are three ways for 2 developer to execute tests in an org? Choose 3 answers

Options:

A.  

Metadata APT

B.  

Bulk API

C.  

Setup Menu

D.  

SalesforceDX

E.  

Tooling API

Discussion 0
Questions 22

A developer at AW Computing is tasked to create the supporting test class for a programmatic customization that leverages records stored within the custom object,

Pricing Structure c. AW Computing has a complex pricing structure for each item on the store, spanning more than 500 records.

hich two approaches can the developer use to ensure Pricing _Structure__c records are available when the test class is executed?

Choose 2 answers

Options:

A.  

Use a Test Date Factory class.

B.  

Use the @raTeat (seeAllData=true) annotation.

C.  

Use the Test. leadtear{} method,

D.  

Use without shering on the class declaration.

Discussion 0
Questions 23

Which aspect of Apex programming is limited due to multitenancy?

Options:

A.  

The number of active Apex classes

B.  

The number of methods in an Apex Class

C.  

The number of records processed in a loop

D.  

The number of records returned from database queries

Discussion 0
Questions 24

Which two are phases in the Aura application event propagation framework? Choose 2 answers

Options:

A.  

Emit

B.  

Control

C.  

Default

D.  

Bubble

Discussion 0
Questions 25

What is the result of the following code snippet?

Options:

A.  

Accounts are inserted.

B.  

Account Is inserted.

C.  

200 Accounts are inserted.

D.  

201 Accounts are Inserted.

Discussion 0
Questions 26

AW Computing tracks order information in custom objects called order__c and order_Line_ c - Currently, all shipping information is stored in the order__c object.

The company wants to expand Its order application to support split shipments so that any number of order_Line__c records on a single order__c can be shipped to different locations.

What should a developer add to fulfill this requirement?

Options:

A.  

Order_shipment_Group_c object and master-detail field on order_Line_c

B.  

Order_shipment_Group_c object and master-detail field on order_c

C.  

Order_shipment_Group_c object and master-detail field to order_c and Order Line_c

D.  

Order_shipment_Group_c object and master-detail field on order_shipment_Group_c

Discussion 0
Questions 27

Cloud kicks has a multi-screen flow that its call center agents use when handling inbound service desk calls.

At one of the steps in the flow, the agents should be presented with a list of order numbers and dates that are retrieved from an external order management system in real time and displayed on the screen.

What should a developer use to satisfy this requirement?

Options:

A.  

An Apex controller

B.  

An Apex REST class

C.  

An outbound message

D.  

An invocable method

Discussion 0
Questions 28

A developer Is Integrating with a legacy on-premise SQL database.

What should the developer use to ensure the data being Integrated is matched to the right records in Salesforce?

Options:

A.  

Lookup field

B.  

External ID field

C.  

Formula field

D.  

External Object

Discussion 0
Questions 29

Which two sfdx commands can be used to add testing data to a Developer sandbox?

Options:

A.  

Forced: data:bulk:upsert

B.  

Forced: data: object :upsert

C.  

Forced: data: tree: upsert

D.  

Forced: data:async:upsert

Discussion 0
Questions 30

A developer is migrating a Visualforce page into a Lightning web component.

The Visualforce page shows information about a single record. The developer decides to use Lightning Data Service to access record data.

Which security consideration should the developer be aware of?

Options:

A.  

Lightning Data Service handles sharing rules and field-level security.

B.  

Lightning Data Service ignores field-level security.

C.  

The with sharing keyword must be used to enforce sharing rules.

D.  

The isAccessible ( ) method must be used for field-level access checks

Discussion 0
Questions 31

A credit card company needs to implement the functionality for a service agent to process damaged or stolen credit cards. When the customers call in, the service agent must gather many pieces of information. A developer is tasked to implement this functionality.

What should the developer use to satisfy this requirement in the most efficient manner?

Options:

A.  

Apex trigger

B.  

Approval process

C.  

Screen-based flow

D.  

Lightning Component

Discussion 0
Questions 32

Which action may cause triggers to fire?

Options:

A.  

Updates to Feed Items

B.  

Renaming or replacing a picklist entry

C.  

Changing a user's default division when the transfer division option is checked

D.  

Cascading delete operations

Discussion 0
Questions 33

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 answers

Options:

A.  

Debug log levels are cumulative, where FINE log level includes all events logged at the DEBUG, INFO, WARN, and ERROR levels.

B.  

The maximum size of a debug log is 5 M

B.  

C.  

Only the 20 most recent debug logs for a user are kept.

D.  

Debug logs can be set for specific users, classes, and triggers.

E.  

System debug logs are retained for 24 hours.

Discussion 0
Questions 34

What should a developer do to check the code coverage of a class after running all tests?

Options:

A.  

View the Code Coverage column in the list view on the Apex Classes page.

B.  

View the Class Test Percentage tab on the Apex Class fist view m Salesforce Setup.

C.  

View Use cede coverage percentage for the class using the Overall Code Coverage panel in the Developer Console Tests tab.

D.  

Select and run the class on the Apex Test Execution page in the Developer Console.

Discussion 0
Questions 35

A developer wants to invoke on outbound message when a record meets a specific criteria.

Which three features satisfy this use case?

Choose 3 answer

Options:

A.  

Approval Process has the capacity to check the record criteria and send an outbound message without Apex Code

B.  

Process builder can be used to check the record criteria and send an outbound message with Apex Code.

C.  

workflows can be used to check the record criteria and send an outbound message.

D.  

Process builder can be used to check the record criteria and send an outbound messagewithout Apex Code.

E.  

Visual Workflow can be used to check the record criteria and send an outbound message without Apex Code.

Discussion 0
Questions 36

The following code snippet is executed by a Lightning web component in an environment with more than 2,000 lead records:

Which governor limit will likely be exceeded within the Apex transaction?

Options:

A.  

Total number of DML statement issued

B.  

Total number of SOQL queries issued

C.  

Total number of records retrieved by SOQL queries

D.  

Total number of records processed as a result of DML statements

Discussion 0
Questions 37

Since Aura application events follow the traditional publish-subscribe model, which method is used to fire an event?

Options:

A.  

ernit()

B.  

fireEvent()

C.  

fire()

D.  

registerEvent()

Discussion 0
Questions 38

A developer created a child Lightning web component nested inside a parent Lightning web component, parent component needs to pass a string value to the child component.

In which two ways can this be accomplished?

Choose 2 answers

Options:

A.  

The parent component can use a custom event to pass the data to the child component,

B.  

The parent component can use the Apex controller class to send data to the child component.

C.  

The parent component can invoke a method in the child component

D.  

The parent component can use a public property to pass the data to the child component.

Discussion 0
Questions 39

A custom Visualforce controller calls the ApexPages,addMessage () method, but no messages are rendering on the page.

Which component should be added to the Visualforce page to display the message?

Options:

A.  

B.  

C.  

D.  

Discussion 0
Questions 40

A developer has the following requirements:

• Calculate the total amount on an Order.

• Calculate the line amount for each Line Item based on quantity selected and price.

• Move Line Items to a different Order if a Line Item is not in stock.

Which relationship implementation supports these requirements on its own7

Options:

A.  

Line Item has a re-parentable master-detail field to Order.

B.  

Order has a re-parentable master-detail field to Line Item.

C.  

Line Item has a re-parentable lookup field to Order.

D.  

Order has a re-parentable lookup field to Line Item.

Discussion 0
Questions 41

Where are two locations a developer can look to find information about the status of asynchronous or future methods? Choose 2 answers

Options:

A.  

Apex Flex Queue

B.  

Apex Jobs

C.  

Paused Flow Interviews component

D.  

Time-Based Workflow Monitor

Discussion 0
Questions 42

n org has an existing flow that creates an Opportunity with an Update Records element. A developer must update the flow to aiso create a ‘Contact and store the created Contact's 1D on the Opportunity.

Which update must the developer make in the flow?

Options:

A.  

Add a new Get Records element.

B.  

Add a new Create Records element.

C.  

Add a new Update Records element.

D.  

Add a new Roll back Records element

Discussion 0
Questions 43

How can a developer check the test coverage of active Process Builder and Flows deploying them in a Changing Set?

Options:

A.  

Use the Flow properties page.

B.  

Use the code Coverage Setup page

C.  

Use the Apex testresult class

D.  

Use SOQL and the Tooling API

Discussion 0
Questions 44

A developer creates a batch Apex job to update a large number of records, and receives reports of the job timing out and not completing.

What is the first step towards troubleshooting the issue?

Options:

A.  

Check the asynchronous job monitoring page to view the job status and logs.

B.  

Check the debug logs for the batch job.

C.  

Decrease the batch size to reduce the load on the system.

D.  

Disable the batch job and recreate it with a smaller number of records.

Discussion 0
Questions 45

Which Lightning code segment should be written to declare dependencies on a Lightning component, c:accountList, that is used in a Visualforce page?

A)

B)

C)

D)

Options:

A.  

Option A

B.  

Option B

C.  

Option C

D.  

Option D

Discussion 0
Questions 46

Which annotation should a developer use on an Apex method to make it available to be wired to a property in a Lightning web component?

Options:

A.  

@RemoteAction

B.  

@AureEnabled

C.  

@AureEnabled (cacheable=true)

D.  

@RemoteAction(|cacheable=true)

Discussion 0
Questions 47

What is the result of the following code?

Options:

A.  

The record will not be created and a exception will be thrown.

B.  

The record will be created and a message will be in the debug log.

C.  

The record will not be created and no error will be reported.

D.  

The record will be created and no error will be reported.

Discussion 0
Questions 48

A developer created these three Rollup Summary fields in the custom object, Project__c:

The developer is asked to create a new field that shows the ratio between rejected and approved timesheets for a given project.

Which should the developer use to implement the business requirement in order to minimize maintenance overhead?

Options:

A.  

Record-triggered flow

B.  

Formula field

C.  

Apex trigger

D.  

Field Update actions

Discussion 0
Questions 49

Which exception type cannot be caught?

Options:

A.  

B.  

C.  

D.  

Discussion 0
Questions 50

What can be used to override the Account's standard Edit button for Lightning Experience?

Options:

A.  

Lightning action

B.  

Lightning component

C.  

Lightning page

D.  

Lightning flow

Discussion 0
Questions 51

As part of a data cleanup strategy, AW Computing wants to proactively delete associated opportunity records when the related Account is deleted.

Which automation tool should be used to meet this business requirement?

Options:

A.  

Workflow Rules

B.  

Scheduled job

C.  

Record-Triggered Flow

D.  

Process Builder

Discussion 0
Questions 52

Which three resources in an Aura component can contain JavaScript functions? Choose 3 answers

Options:

A.  

Renclerer

B.  

Style

C.  

Helper

D.  

Controller

E.  

Design

Discussion 0
Questions 53

A software company is using Salesforce to track the companies they sell their software to in the Account object. They also use Salesforce to track bugs in their software with a custom object, Bug__c.

As part of a process improvement initiative, they want to be able to report on which companies have reported which bugs. Each company should be able t

report multiple bugs and bugs can also be reported by multiple companies.

What is needed to allow this reporting?

Options:

A.  

Roll-up summary field of Bug__c on Account

B.  

Junction object between Bug__c and Account

C.  

Lookup field on Bug__c to Account

D.  

Master-detail field on Bug__c to Account

Discussion 0
Questions 54

A developer is creating a page that allows users to create multiple Opportunities. The developer is asked to verify the current user's default } |

Opportunity record type, and set certain default values based on the record type before inserting the record.

How can the developer find the current user's default record type? ns

Options:

A.  

Query the Profile where the ID equals userInfo.getProfileID() and then use the profile.Opportunity.getDefaultRecordType() | |method. ] |

B.  

Use Opportunity. SObjectType.getDescribe().getRecordTypelnfos() to get a list of record types, and iterate through them until [ J

isDefaultRecordTypeMapping() is true. Pencil & Paper |

C.  

Use the Schema.userlnfo.Opportunity.getDefaultRecordType() method. <

Create the opportunity and check the opportunity.recordType before inserting, which will have the record ID of the current Dal user's default record type.

Discussion 0
Questions 55

A developer needs to prevent the creation of Request__c records when certain coVraitions exist in the system. A RequeatLogic class exists that checks the conditions.

What is the correct implementation?

Options:

A.  

Option A

B.  

Option B

C.  

Option C

D.  

Option D

Discussion 0
Questions 56

An org has an existing Flow that creates an Opportunity with an Update Records element. A developer update the Flow to also create a Contact and store the created Contact's ID on the Opportunity.

Which update should the developer make in the Flow?

Options:

A.  

Add a new Get Records element.

B.  

Add a new Update Records element.

C.  

Add a new Quick Action element(of type Create).

D.  

Add a new Create Records element.

Discussion 0
Questions 57

Which two characteristics are true for Lightning Web Component custom events?

Choose 2 answers

Options:

A.  

Data may be passed In the payload of a custom event using a wire decorated properties.

B.  

By default a custom event only propagates to its immediate container and to its immediate child component.

C.  

By default a custom event only propagates to it's immediate container.

D.  

Data may be passed in the payload of a custom event using a property called detail.

Discussion 0
Questions 58

When using SalesforceDX, what does a developer need to enable to create and manage scratch orgs?

Options:

A.  

Production

B.  

Dev Hub

C.  

Environment Hub

D.  

Sandbox

Discussion 0
Questions 59

Refer to the following code snippet for an environment has more than 200 Accounts belonging to the Technology' industry:

When the code execution, which two events occur as a result of the Apex transaction?

When the code executes, which two events occur as a result of the Apex transaction?

Choose 2 answers

Options:

A.  

If executed in an asynchronous context, the apex transaction is likely to fall by exceeding the DML governor limit

B.  

The Apex transaction succeeds regardless of any uncaught exception and all processed accounts are updated.

C.  

The Apex transaction fails with the following message. "SObject row was retrieved via SOQL without querying the requested field Account.Is.Tech__c''.

D.  

If executed In a synchronous context, the apex transaction is likely to fall by exceeding the DHL governor limit.

Discussion 0
Questions 60

What should a developer do to check the code coverage of a class after running all tests?

Options:

A.  

View the code coverage percentage or the class using the Overalll code Coverage panel in the Developer Console Test tab.

B.  

View the Code Coverage column in the list on the Apex Classes page.

C.  

Select and run the class on the Apex est Execution page in the Developer Console.

D.  

View the Class test Percentage tab on the Apex Class list view in Salesforce Setup.

Discussion 0
Questions 61

Universal Containers wants to assess the advantages of declarative development versus programmatic customization for specific use cases in its Salesforce implementation.

What are two characteristics of declarative development over programmatic customization? Choose 2 answers

Options:

A.  

Declarative code logic does not require maintenance or review.

B.  

Declarative development has higher design limits and query limits.

C.  

Declarative development can be done using the setup menu.

D.  

Declarative development does not require Apex test classes.

Discussion 0
Questions 62

When a user edits the Postal Code on an Account, a custom Account text field named ''Timezone'' must be updated based on the values in a postalCodeToTimezone_c custom object.

What should be built to implement this feature?

Options:

A.  

Account custom trigger

B.  

Account approval process

C.  

Account assignment rule

D.  

Account workflow rule

Discussion 0
Questions 63

A developer created these three Rollup Summary fields in the custom object, Project_ct,

The developer is asked to create a new field that shows the ratio between rejected and approved timesheets for a given project.

Which should the developer use to Implement the business requirement in order to minimize maintenance overhead?

Options:

A.  

Record-triggered Flow

B.  

Formula field

C.  

Apex Trigger

D.  

Process Builder

Discussion 0
Questions 64

Universal Containers needs to create a custom user interface component that allows users to enter information about their accounts.

The component should be able to validate the user input before saving the information to the database.

What is the best technology to create this component?

Options:

A.  

Flow

B.  

Lightning Web Components

C.  

Visualforce

D.  

VUE JavaScript framework

Discussion 0
Questions 65

A developer creates a custom exception as shown below:

public class ParityException extends Exception {}

What are two ways the developer can fire the exception in Apex?

Choose 2 answers

Options:

A.  

new ParityException();:

B.  

throw new ParityException("parity does not match");

C.  

new ParityException('parity does not match');

D.  

throw new ParityException();

Discussion 0
Questions 66

What are two benefits of using External IDs?

Choose 2 answers

Options:

A.  

An External ID field can be used Co reference an ID from another external system.

B.  

An External ID can be a formula field to help create a unique key from two fields in Salesforce.

C.  

An External ID can be used with Salesforce Mobile to make external data visible.

D.  

An External ID is indexed and can improve the performance of SOQl quenes.

Discussion 0
Questions 67

Universal Containers wants to back up all of the data and attachments in its Salesforce org once month. Which approach should a developer use to meet this requirement?

Options:

A.  

Use the Data Loader command line.

B.  

Create a Schedulable Apex class.

C.  

Schedule a report.

D.  

Define a Data Export scheduled job.

Discussion 0
Questions 68

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?

Options:

A.  

Exception

B.  

Messaging

C.  

OrgLimits

D.  

Limits

Discussion 0
Questions 69

A developer created a trigger on the Account object. While testing the trigger, the developer sees the error message 'Maximum trigger depth

exceeded’,

What could be the possible causes?

Options:

A.  

The developer does not have the correct user permission.

B.  

The trigger is getting executed multiple times.

C.  

The trigger is a a helper class.

D.  

The trigger does not have sufficient code coverage.

Discussion 0
Questions 70

Which three Salesforce resources can be accessed from a Lightning web component?

Choose 3 answers

Options:

A.  

SVG resources

B.  

Third-party web components

C.  

Content asset files

D.  

Static resources

E.  

All external libraries

Discussion 0