100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached 4.6 TrustPilot
logo-home
Exam (elaborations)

Salesforce Platform Developer I Questions And Answers Rated 100% Correct!!

Rating
-
Sold
-
Pages
18
Grade
A+
Uploaded on
11-10-2024
Written in
2024/2025

Which requirement needs to be implemented by using standard workflow instead of Process Builder? Choose 2 answers A. Create activities at multiple intervals. B. Send an outbound message without Apex code. C. Copy an account address to its contacts. D. Submit a contract for approval. - ️️A, B What must the Controller for a Visualforce page utilize to override the Standard Opportunity view button? A. The StandardSetController to support related lists for pagination. B. the Opportunity StandardController for pre -built functionality. C. A callback constructor to reference the StandardController. D.A constructor that intrializes a private Opportunity variable. - ️️B A developer uses a before insert trigger on the Lead object to fetch the Territory__c object, where the Territory__c.PostalCode__c matches the Lead.PostalCode. The code fails when the developer uses the Apex Data Loader to insert 10,000 Lead records. The developer has the following code block: Line-01: for (Lead l : T){ Line-02: if (l.PostalCode != null) { Line-03: ListTerritory__c terrList = [SELECT Id FROM Territory__c WHERE PostalCode__c = :l.PostalCode]; Line-04: if(terrL() 0) Line-05: l.Territory__c = terrList[0].Id; Line-06: } Line-07: } Which line of code is causing the code block to fail? A. Line-03: A SOQL query is located inside of the for loop code. B. Line-01: Trigger:new is not valid in a before insert Trigger. C. Line-02: A NullPointer exception is thrown if PostalCode is null. D. Line-05: The Lead in a before insert trigger cannot be updated. - ️️A What would a developer do to update a picklist field on related Opportunity records when a modification to the associated Account record is detected? A. Create a process with Process Builder. B. Create a workflow rule with a field update.C. Create a Lightning Component. D. Create a Visualforce page. - ️️A An org has different Apex Classes that provide Account -related functionality. After a new validation rule is added to the object, many of the test methods fail. What can be done to resolve the failures and reduce the number of code changes needed for future validation rules? Choose 2 answers: A. Create a method that creates valid Account records, and call this method from within test methods. B. Create a method that loads valid Account records from a Static Resource, and call this method within test methods. C. Create a method that performs a callout for a valid Account record, and call this method from within test methods. D Create a method that queries for valid Account records, and call this method from within test methods. - ️️A, B Which component is available to deploy using Metadata API? Choose 2 answers A. Case Layout B. Account Layout C. Case Feed Layout D. ConsoleLayout - ️️A, B In the code below, what type does Boolean inherit from? Boolean b= true; A. Enum B. Object C. String D. Class - ️️B What is the preferred way to reference web content such as images, style sheets, JavaScript, and other libraries that is used in Visualforce pages? A. By accessing the content from Chatter Files. B. By uploading the content in the Documents tab. C. By accessing the content from a third -party CON. D. By uploading the content as a Static Resource. - ️️D A company has a custom object named Warehouse. Each Warehouse record has a distinct record owner, and is related to a parent Account in Salesforce.Which kind of relationship would a developer use to relate the Account to the Warehouse? A. One -to -Many B. Lookup C. Master -Detail D. Parent -Child - ️️B A developer creates a Workflow Rule declaratively that updates a field on an object. An Apex update trigger exists for that object. What happens when a user updates a record? A. No changes are made to the data. B. Both the Apex Trigger and Workflow Rule are fired only once. C. The Workflow Rule is fired more than once. D. The Apex Trigger is fired more than once. - ️️D What is true for a partial sandbox that is not true for a full sandbox? Choose 2 answers: A. More frequent refreshes. B. Only Includes necessary metadata. C. Use of change sets. D. Limited to 5 GB of data. - ️️A, D In which order does SalesForce execute events upon saving a record? A. Before Triggers; Validation Rules; After Triggers; Assignment Rules; Workflow Rules; Commit B. Validation Rules; Before Triggers; After Triggers; Workflow Rules; Assignment Rules; Commit C. Before Triggers; Validation Rules; ilter Triggers; Workflow Rules; Assignment Rules; Commit D. Validation Rules; Before Triggers; After Triggers; Assignment Rules; Workflow Rules; Commit - ️️A When loading data into an organization, what can a developer do to match records to update existing records? Choose 2 answers A. Match an external Id Text field to a column in the imported file. B. Match the Id field to a column in the Imported file. C. Match the Name field to a column in the imported file. D. Match an auto -generated Number field to a column in the imported file. - ️️A, BIn an organization that has enabled multiple currencies, a developer needs to aggregate the sum of the Estimated_value__c currency field from the CampaignMember object using a roll-up summary field called Total_estimated_value__c on Campaign. How is the currency of the Total_estimated_value__c roll-up summary field determined? A. The values in Campaignmember.Estimated_value__c are converted into the currency of the Campaign record and the sum is displayed using the currency on the Campaign record. B. The values in CampaignMember.Estimated_value__c are converted into the currency on the majority of the CampaignMember records and the sum is displayed using that currency. C. The values in CampaignMember.Estimated_value__c are summed up and the resulting Total_estimated_value__c field is displayed as a numeric field on the Campaign record. D. The values In CampaignMember.Estimated_value__c are converted into the curren - ️️A A candidate may apply to multiple jobs at the company Universal Containers by submitting a single application per job posting, that application cannot be modified to be resubmitted to a different job posting. What can the administrator do to associate an application with each job posting in the schema for the organization? A. Create a lookup relationship on both objects to a junction object called Job Posting Applications. B. Create a master-detail relationship in the Job Postings custom object to the Applications custom object. C. Create a master-detail relationship in the Application custom object to the Job Postings custom object. D. Create a lookup relationship in the Applications custom object to the Job Postings custom object. - ️️C What is a characteristic of the Lightning Component Framework? Choose 2 answers: A. It has an event-driven architecture. B. It works with existing Visualforce pages. C. It includes responsive components. D. It uses XML as its data format. - ️️A, C What is a capability of cross-object formula fields? Choose 3 answersA. Formula fields can reference fields from master-detail or lookup parent relationships. B. Formula fields can expose data the user does not have access to in a record. C. Formula fields can be used in three roll-up summaries per object. D. Formula fields can reference fields in a collect of records from a child relationship. E. Formula fields can reference fields from objects that are up to 10 relationships away. - ️️A, B, E A developer has a block of code that omits any statements that indicate whether the code block should execute with or without sharing. What will automatically obey the organization-wide defaults and sharing settings for the user who executes the code in the Salesforce organization? A. Apex Triggers B. HTTP Callouts C. Apex Controllers D. Anonymous Blocks - ️️D

Show more Read less
Institution
Salesforce Platform Developer I
Course
Salesforce Platform Developer I

Content preview

Salesforce CDP
A purchase order number is specified as text field typE. What value will segmenting on
Purchase order number | is equal to | 0122 return?
A. Purchase order number 122
B. Purchase order number 0122
C. Purchase order number 0122 and 122
D. Purchase order number null - ✔️✔️B. Purchase order number 0122

What modeling format describes the Individual and Contact Point objects?
A. Jagged
B. Normalized
C. Compress
D. De-normalized - ✔️✔️B. Normalized

Which field in the recommended source schema is not editable?
A. Field Label
B. Field API Name
C. Header Label
D. Data Type - ✔️✔️C. Header Label

How many Salesforce orgs can an admin connect to Salesforce CDP?
A. 1
B. 2
C. 10
D. No limit - ✔️✔️D. No hard limit

Which Salesforce CDP use case merges customer information from various systems to
create a single id, a single record for a cusomter?
A. Audience Segmentation
B. Consent Management
C. Data Unification
D. Identity resolution - ✔️✔️D. Identity resolution

What role in a company was Salesforce CDP designed for?
A. Developer
B. Marketer
C. Salesperson
D. Data Analyst - ✔️✔️B. Marketer

Which CDP use case drives acquisition of new customers based on 3rd party data? -
✔️✔️Prospective look-alikes with paid media

What are the two file type options for activation for Cloud Storage?

,A. .json
B. .csv
C. .zip
D. .xls - ✔️✔️A. .json
B. .csv

What are activated segments found in Marketing Cloud?
A. Filtered data extensions
B. Standard data extensions
C. Shared data extensions
D. Salesforce Data Extensions - ✔️✔️C. Shared data extension

Which data model type in Salesforce CDP defines interactions with party?
A. Sales Order
B. Transaction
C. Engagement
D. Individual - ✔️✔️C. Engagement

Which two steps are required when setting up a marketing cloud activation? - ✔️✔️B.
Choose an activation target
D. Select the email contact point

Which two files are activated to Cloud file storage to publish segment? - ✔️✔️B. A file
that contains the segment definition
C. A file that contains the segment members with additional attributes

What is the recommendation for activation when multiple data sources are brought into
CDP? - ✔️✔️C. Use Identity Resolution and activate on Unified Individual

Which operator can be used to check if an attribute value is blank?
A. IS not null
B. Has no value
C. Null
D. Is empty - ✔️✔️D. Is empty

Where do calculated insights appear in the segmentation attribute library?
A. They always appear in Direct Attributes
B. They always appear in Related Attributes
C. They appear under the objects that were used to create them
D. They appear under Profile type objects - ✔️✔️C. They appear under the objects that
were used to create them

Where does Data Specialist enable value suggestion on an attribute for segmentation?
A. Segment Setup
B. Data Mapping (accurate)

, C. Data Modeling
D. Data Stream Setup (it can be also answer. HELP doc ) - ✔️✔️B. Data Mapping
(accurate)

What are the two benefits of Calculate Insights compared to Segment criteria?
A. It creates simple logic on row-based operations
B. It creates reusable contents
C. Marketer friendly drag and drop interface
D. It performs complex queries on multiple objects - ✔️✔️B. It creates reusable
contents
D. It performs complex queries on multiple objects

What is the result of a segment using two separate containers linked by an AND:
SalesOrder.PurchasedItem = 'Yellow' AND SalesOrder.PurchasedItem = 'Belt'?
A. Customer who purchased only 'Yellow Belt' items on the purchase.
B. Customer who purchased any yellow product and also purchased belt of any color.
C. Customer who purchased 'Yellow Belt' as a single product on the purchase. D.
Customer who purchased 'Yellow Belt', or any 'yellow' item, or any 'belt' items on the
purchase - ✔️✔️B. Customer who purchased any yellow product and also purchased
belt of any color.

What data model object category can a marketer create segments on?
A. Unified Individual Only B. Engagement C. Profile D. Other - ✔️✔️C. Profile

What programming language is used to configure Calculate Insights? A. Python B.
SOQL C. ANSI SOQL D. DCL - ✔️✔️C. ANSI SOQL

How many Marketing Cloud instances, or Enterprise IDs can be connected to one
Salesforce CDP org? A. Two B. Four C. One D. Three - ✔️✔️C. One

Which two dependencies need to be removed prior to disconnecting a data source? A.
Activation Target B. Data Stream C. Segment D. Activation - ✔️✔️B. Data Stream
C. Segment

Which two CRM objects are included in both Sales and Service Cloud Data Bundle?
A. Campaign Member B. Contact C. Opportunity D. Account - ✔️✔️B. Contact
D. Account

Which data bundle sources are available out of the box to create Data Streams from
Marketing Cloud?
A. Email only
B. Email and MobileConnect
C. Email, MobileConnect and MobilePush
D. Email, MobileConnect, MobilePush and GroupConnect - ✔️✔️C. Email,
MobileConnect and MobilePush

Written for

Institution
Salesforce Platform Developer I
Course
Salesforce Platform Developer I

Document information

Uploaded on
October 11, 2024
Number of pages
18
Written in
2024/2025
Type
Exam (elaborations)
Contains
Questions & answers

Subjects

Get to know the seller

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
ACADEMICMATERIALS City University New York
View profile
Follow You need to be logged in order to follow users or courses
Sold
598
Member since
2 year
Number of followers
185
Documents
10571
Last sold
3 days ago

4.0

98 reviews

5
53
4
13
3
21
2
3
1
8

Trending documents

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Frequently asked questions