[2024年11月12日] 実際のPlatform-App-Builder試験問題集は2024年最新のSalesforce練習試験合格させます [Q102-Q124]

Share

[2024年11月12日] 実際のPlatform-App-Builder試験問題集は2024年最新のSalesforce練習試験合格させます

2024年最新の実際にあるPlatform-App-Builder問題集テストエンジン試験問題はここにある


Salesforce Certified Platform App Builder試験は、Salesforceプラットフォーム上でカスタムアプリケーションを構築する経験があるプロフェッショナルを対象としています。この認定は、Salesforceプラットフォームを使用してカスタムアプリケーションを設計、構築、展開するために必要なスキルと知識を検証します。試験は、データモデリング、ユーザーインターフェイス設計、ビジネスロジック、セキュリティ、展開など、さまざまなトピックで候補者をテストします。


Salesforce Platform-App-Builderを使用してカスタムアプリを構築する習熟度を示すために、個人はSalesforce認定プラットフォームアプリビルダーとして認定されることができます。この認定試験では、Salesforceプラットフォームを使用してカスタムアプリを設計、構築、展開するために必要な知識とスキルをテストします。この試験は、開発者、システム管理者、ビジネスアナリスト、およびSalesforceプラットフォームでカスタムアプリを構築する専門知識を実証したい他の専門家向けに設計されています。

 

質問 # 102
A customer service representative at a call center wants to be able to collect information from customers using a series of question prompts.
What should an app builder use to accomplish this?

  • A. Flow
  • B. Approval Process
  • C. Path
  • D. Validation Rule

正解:A

解説:
For a customer service representative to collect information through a series of question prompts:
B . Flow. Salesforce Flows allow for the creation of guided interactions that can prompt users for information in a step-by-step manner.
Steps to create a flow for this purpose:
Navigate to Setup → Flows.
Click on 'New Flow' and select a Screen Flow to interactively prompt users.
Design the flow with Screen elements for each question.
Add logic to process responses as necessary.
Save and activate the flow.
Embed or link the flow in a relevant location accessible to the service representative, such as on a record page or in the utility bar.
Flows provide a flexible and powerful way to interactively gather and process customer data in real time.
For detailed guidance on creating Flows, see Salesforce's Flow Builder documentation.


質問 # 103
What option is available to an App Builder when defining an object-specific Create Record custom action?
Choose 2 answers

  • A. Pre-Defining field values on the target object.
  • B. Specifying the fields and layout of the action.
  • C. Allowingthe end user to choose the record type
  • D. Redirecting the end user to the detail page of the target object

正解:A、B

解説:
Explanation
The app builder has two options available when defining an object-specific Create Record custom action:
Pre-Defining field values on the target object. This means that the app builder can specify default values for certain fields on the target object when creating a new record using the custom action.
Specifying the fields and layout of the action. This means that the app builder can choose which fields to include in the action and how they are arranged on the screen. Option B and D are not options available when defining an object-specific Create Record custom action.


質問 # 104
The CFO wants to make sure that a deal with more than a 40% discount gets approved by the VP of Finance before a quote is sent to the customer.
In which two ways can this be accomplished? (Choose two.)

  • A. Launch a new approval process that has automatic submission enabled as an initial submission action.
  • B. Create a new approval process that has automatic submission enabled in the entry criteria.
  • C. Create a new process with a submit for approval action to automatically submit deals for approval.
  • D. Launch a flow that uses the submit for approval action to submit deals for approval.

正解:C、D


質問 # 105
Which of the following are types of developer sandboxes environment types in Salesforce? (Choose four.)

  • A. Full Copy
  • B. Partial Copy
  • C. Partial Sandbox
  • D. Developer
  • E. Developer Pro
  • F. Full Sandbox

正解:B、D、E、F


質問 # 106
Cloud Kicks wants to know the total value of all won Opportunities for Accounts and display it on the record.
What type of summary should the app builder use in the roll-up summary field?

  • A. Sum
  • B. Q Max
  • C. Min
  • D. Count

正解:A

解説:
The app builder should use Sum as the type of summary in the roll-up summary field. A Sum type of summary allows the app builder to calculate the total value of a numeric field from the child records related to a parent record by a master-detail relationship. The app builder can create a roll-up summary field on the Account object that sums the Amount field from the won Opportunities related to each Account. Count is not a valid type of summary, as it does not calculate the total value of a numeric field. A Count type of summary allows the app builder to count the number of child records related to a parent record by a master-detail relationship. Max is not a valid type of summary, as it does not calculate the total value of a numeric field. A Max type of summary allows the app builder to display the largest value of a numeric or date field from the child records related to a parent record by a master-detail relationship. Min is not a valid type of summary, as it does not calculate the total value of a numeric field. A Min type of summary allows the app builder to display the smallest value of a numeric or date field from the child records related to a parent record by a master-detail relationship.


質問 # 107
Which two features can be used to allow users to access Visual Workflows? Choose 2 answers

  • A. Quick Action
  • B. Custom Button
  • C. Visual Workflow Launcher
  • D. Invoked by Process

正解:C、D


質問 # 108
At Universal Containers, the Account object has a Master-Detail relationship with an Invoice custom object.
The App Builder would like to change to a lookup field, but is not able to do so. What could be causing this?

  • A. The Invoice records have existing values in the Account.
  • B. The Account record includes Invoice roll-up summary fields.
  • C. The Account is included in the workflow on the Invoice object.
  • D. The invoice must have at least one Master-Detail field for reporting.

正解:B

解説:
The Account record includes Invoice roll-up summary fields. This is correct because roll-up summary fields are only available on the master object in a master-detail relationship, and changing the field type to lookup would delete the roll-up summary fields


質問 # 109
Universal Containers (UC) tracks Account locations in Zip Code, a custom text field with a validation rule to enforce proper formatting of the US ZIP+4 code for UC's orders.
What formula should the app builder create on Order to display only the first five digits of Zip Code from the parent Account?

  • A. TEXT(Account.Zip_Code_c, 5)
  • B. BEGINS(Account.Zip_Code_r, 5)
  • C. LPAD(Account.Zip_Code__r, 5)
  • D. LEFT(Account.Zip_Code_c, 5)

正解:D

解説:
LEFT(Account.Zip_Code_c, 5) is the correct formula to display only the first five digits of Zip Code from the parent Account. LEFT function returns the specified number of characters from the left side of a text string.
Account.Zip_Code_c is the custom text field that stores the Zip Code on Account object. 5 is the number of characters to return from the left side of the Zip Code. The other options are not valid formulas or functions.


質問 # 110
Universal Containers created a 'New Task' custom action on the Opportunity object. The action was added to all page layouts in the Mobile & Lightning Actions section.
Which Lightning component should the app builder add to the layout to display the action?

  • A. Highlights panel
  • B. Related record
  • C. Related lists
  • D. Activities

正解:D


質問 # 111
Universal Containers has public Read-Write as the Account Org Wide Default (OWO) setting. visit form to the Universal Containers Customer Community report they can see all of Universal Containers' account records.
How should an app builder configure Account sharing so that Community users only see their own Account.

  • A. Define an Owner-based Sharing Rule for External Accounts.
  • B. Create an Account record type for External Accounts.
  • C. Set the Account External OWD to Private.
  • D. Define a Permission Set External Accounts.

正解:D


質問 # 112
Cloud Kicks asked the app builder to insert a list of 25,000 records using deduplication for the Race_Track__c customobject.
Which tool should be used?

  • A. Schema Builder
  • B. Data Loader
  • C. Import Wizard
  • D. Lightning Object Creator

正解:C

解説:
To insert a list of 25,000 records using deduplication for the Race_Track__c custom object, an app builder should use Data Loader. Data Loader is a tool that allows users to insert, update, delete, or export large amounts of data in Salesforce. Data Loader can also perform deduplication by matching records based on external ID fields or Salesforce record IDs. [Source]


質問 # 113
Universal Container's app builder needs to display an account's rating on all contacts related to that account.
Which formula is valid in a text formula field on the contact to display the appropriate value? (Choose two.)

  • A. Account.Rating
  • B. CASE(Account.Rating, "Hot", "Hot", "Warm", "Warm", "Cold", "Cold", "Not Rated")
  • C. CASE(Account.Rating, Hot, Hot, Warm, Warm, Cold, Cold, Not Rated)
  • D. Text(Account.Rating)

正解:B、D


質問 # 114
Universal Containers is piloting new features in an existing sandbox and wants to prevent outbound email sends during testing.
What should the app builder do to meet the requirement?

  • A. Email deliverability set to no access.
  • B. Email configured for SMTP authentication.
  • C. Email deliverability set to system email only.
  • D. Email relay to the configured host enabled.

正解:A

解説:
Explanation
Setting email deliverability to no access would prevent outbound email sends during testing in a sandbox.
This would ensure that no emails are sent to any users or external email addresses from the sandbox. Setting email deliverability to system email only would still allow some emails to be sent, such as password reset emails or new user emails. Configuring SMTP authentication or email relay would not affect email deliverability in a sandbox


質問 # 115
A new field is being created on a custom object. However, the app builder does not want the field to show up on pre-existing custom report types.
What should the app builder do on the custom field setup to fulfill this requirement?

  • A. Remove the new field from all page layouts.
  • B. Grant read-only access to all report profiles.
  • C. Remove visibility to all report profiles.
  • D. Deselect auto add to custom report type.

正解:D

解説:
When creating a new field, if an app builder does not want the field to be automatically added to pre-existing custom report types, the step to take is:
* Deselect 'Add Field to Custom Report Types' (D). This option is available when creating or editing a custom field and ensures that the field is not automatically included in report types where 'Automatically add new custom fields to report type layouts' is enabled.
Removing the field from page layouts (A) affects the visibility on record pages but not reports. Adjusting visibility (B) or setting read-only access (C) for report profiles affects user permissions to see the field in reports, but does not remove the field from report types if it was previously added.
Reference for managing fields in custom report types:
* Custom Report Types and Fields:
https://help.salesforce.com/articleView?id=reports_report_type_layouts.htm&type=5


質問 # 116
An app builder at Cloud Kicks created accustom object and related fields in the schema builder.
What next steps should the app build take to ensure users can access the new object and fields?

  • A. Assign data types to the fields on the object.
  • B. Add the fields to the page layout on the object.
  • C. Create a permission set for access to the object and fields.
  • D. Allow reporting for the object and fields.

正解:B

解説:
The app builder should add the fields to the page layout on the object to ensure users can access the new object and fields. The page layout determines which fields are visible and editable on the record detail page. Option A, B, and C are not necessary for this purpose.


質問 # 117
Representatives at Universal Containers uses Salesforce to record information for new Leads. When new prospects are added, an outbound message is sent to SAP with the Lead's information.
What automation process will accomplish this without writing any code?

  • A. Design an Approval Process that sends an outbound message upon approval.
  • B. Create a process using Process Builder to send the outbound message.
  • C. Create a Workflow Rule with an outbound message as the action.
  • D. Use Flow to create a wizard that will send an outbound message.

正解:C


質問 # 118
Universal Containers (UC) has several picklist fields on the Account object whose values are routinely modified to meet changing business requirements. Due to these revolving changes, UC has a high number of inactive picklist values that are impacting system performance and user experience.
What can the app builder do to alleviate this issue?

  • A. Set up Global Values in Picklist Value Sets.
  • B. Convert the picklist fields to a different field type that will still meet the business requirements.
  • C. Establish upper bound on existing picklists in Picklist Settings.
  • D. Remove upper bound on inactive picklist values in Picklist Settings.

正解:A

解説:
To manage frequently changing picklist values effectively:
B . Set up Global Values in Picklist Value Sets. This approach allows for centralized management of picklist values that can be reused across multiple fields and objects. By using global value sets, inactive values can be efficiently managed and deactivated without impacting fields that use these sets.
For further information on managing picklists, check Salesforce's Picklist Management guide.


質問 # 119
An app builder wants to create a custom object and 10 fields.
What should they use to create the object, fields, and relationships quickly from one place?

  • A. Manage Field Permissions
  • B. Developer Console
  • C. Schema Builder
  • D. Lightning Object Creator

正解:C

解説:
To create a custom object along with multiple fields and relationships efficiently from a single interface, the Schema Builder is the ideal tool:
A . Schema Builder. This graphical tool provides a drag-and-drop interface for creating and modifying objects and fields in Salesforce, allowing for a visual layout of database schema.
Steps to use Schema Builder:
Go to Setup → Schema Builder.
Drag the 'Object' element into the schema area to create a new custom object.
Define the object's properties (e.g., label, API name).
Drag field elements like Text, Number, or Lookup into the object to create fields.
Configure each field's properties according to your requirements.
Connect objects via lookup or master-detail relationships by dragging the relationship fields between them.
Save the layout to create all elements in Salesforce.
For more information, review Salesforce's Schema Builder documentation.


質問 # 120
Universal Containers would like to collaborate with its customers within Salesforce, and has decided to enable the "Allow Customer Invitations" Chatter setting. What permission is granted to Customers when invited to ChatterGroup?

  • A. The ability to invite members to groups of which they are a member
  • B. The ability to interact with members of their groups
  • C. The ability to request access to public groups
  • D. The ability to @mention accounts of which they are a contact.

正解:B

解説:
Explanation
Customers who are invited to Chatter groups can only interact with members of their groups. They cannot invite other members, @mention accounts, or request access to public groups


質問 # 121
In a data model object, A is related to B, B is related to C.
How will a developer create a report to include fields of A & C?

  • A. Create lookup relationships between A, B and C.
  • B. Create a custom report with A and C fields as the relationship already exists.
  • C. Create a custom report type with A, B and C, and use it in the report.
  • D. Report cannot be created.

正解:C


質問 # 122
Universal Containers created a 'New Task' custom action on the Opportunity object. The action was added to all page layouts in the Mobile & Lightning Actions section.
Which Lightning component should the app builder add to the layout to display the action?

  • A. Activities
  • B. Related record
  • C. Highlights panel
  • D. Related lists

正解:C

解説:
Explanation
The best Lightning component to add to the layout to display the 'New Task' custom action is Highlights panel. This component shows key information and actions for a record, such as its name, owner, and custom actions. Related record, related lists, and activities are not Lightning components that display custom actions.
See [this article] for more information on Highlights panel.


質問 # 123
An app builder received a request to extend record access beyond the organization-wide defaults configured.
Which two features satisfy this requirement?
Choose 2 answers

  • A. Permission Set Groups
  • B. Public Groups
  • C. Sharing Rules
  • D. Manual Sharing Rules

正解:C、D

解説:
Sharing rules and manual sharing are two features that can extend record access beyond the organization-wide defaults. Sharing rules are automatic rules that grant access to groups of users based on certain criteria, such as role, public group, or territory. Manual sharing is a manual way of granting access to individual users or groups by the record owner or someone above them in the role hierarchy. Option B and C are not features that extend record access.


質問 # 124
......


Salesforce Certified Platform App Builder試験に備えて、候補者は、学習ガイド、練習試験、オンライントレーニングコースなど、様々なオンラインリソースを活用することができます。Salesforceはまた、認定プロフェッショナルとつながり、知識や経験を共有し、Salesforceエコシステムに対する貴重な洞察を得ることができる包括的な認定勉強グループも提供しています。

 

更新された問題を提供していますPlatform-App-Builder問題集PDF:https://www.passtest.jp/Salesforce/Platform-App-Builder-shiken.html

更新された公式問題Platform-App-Builder認定にはPlatform-App-Builder問題集PDF:https://drive.google.com/open?id=1SfVStiuMB3V55WzIvM6jJY-Q8SWC45Wb