CRT-403無料試験学習ガイド!(更新された290問あります) [Q88-Q105]

Share

CRT-403無料試験学習ガイド!(更新された290問あります)

CRT-403問題集にはPlatform App Builder認証済み試験問題と解答


Salesforce CRT-403: プラットフォームアプリケーションビルダー試験の認定準備は、Salesforceプラットフォームでカスタムアプリケーションを構築する能力を証明するための貴重な認証資格です。この試験は、データモデリングと管理、セキュリティ、自動化、ビジネスロジックに関する候補者の知識とスキルをテストするように設計されています。Salesforce CRT-403の認定資格は、Salesforceエコシステムでキャリアを進めたいプロフェッショナルにとって貴重な資産です。


Salesforce CRT-403試験は、データモデルの設計、ユーザーインターフェースの構築、データの管理、レポートとダッシュボードの作成など、幅広いトピックをカバーしています。さらに、Apexプログラミング、Visualforceページ、およびLightningコンポーネントなどの高度なトピックもカバーしています。この試験は、Salesforceプラットフォームを使用してカスタムアプリケーションを構築するための候補者の知識とスキルを包括的にテストするものです。

 

質問 # 88
At Universal Containers, the VP of Service has requested a visual indicator flag on each case, based on the case priority. High-priority case should be flagged red, medium-priority should be flagged yellow, and low-priority cases should be flagged green.
Which two formulas will accomplish this requirement? (Choose two.)

  • A. IMAGE( IF(ISPICKVAL(Priority, "Low"), "/img/samples/flag_green.gif", IF(ISPICKVAL(Priority, "Medium"), "/img/samples/flag_yellow.gif", IF(ISPICKVAL(Priority, "High"), "/img/samples/flag_red.gif", "/s.gif) ) ), "Priority Flag")
  • B. IF(ISPICKVAL(Priority, "Low"), "/img/samples/flag_green.gif , IF(ISPICKVAL(Priority, "Medium"), "/img/ samples/flag_yellow.gif", IF(ISPICKVAL(Priority, "High"), "/img/samples/flag_red.gif, "/s.gif") ) )
  • C. IMAGE( CASE( Priority, "Low", "/img/samples/flag_green.gif", "Medium", "/img/samples/flag_yellow.gif, "High", "img/samples/flag_red.gif", "/s.gif"), "Priority Flag")
  • D. CASE( Priority, "Low", "/img/samples/flag_green.gif", "Medium", "/img/samples/flag_yellow.gif", "High", "/img/samples/flag_red.gif", "/s.gif")

正解:A、C


質問 # 89
An app builder has been asked to integrate Salesforce with an external web service. The web service must be notified every time an Opportunity is Won.
Which two can satisfy this requirement? (Choose two.)

  • A. Use a process and an outbound message.
  • B. Use a process and Apex code.
  • C. Write a trigger to use Apex Managed Sharing to grant access with the Process Improvement team.
  • D. Use a workflow rule and an outbound message.

正解:B、D


質問 # 90
Universal Containers (UC) utilizes two custom picklist fields called sales_Organization__c and Pricing_Tier__c.
Which validation rule should an app builder use to ensure pricing_Tier__c is required for customers with a Sales_Organization__c value of Canada?

  • A.
  • B.
  • C.
  • D.

正解:A


質問 # 91
An app builder wants to create a formula field on an Account to include data from related Contacts but is unable to find the relationship in the formula editor.
What is a limitation of formulas that could be causing the issue?

  • A. Unable to reference the child records.
  • B. More than 5,000 characters in the formula.
  • C. Formula field limit reached on the Account object.
  • D. A master-detail relationship should be created.

正解:C

解説:
Formulas cannot reference child records, only parent records. This is a limitation of formulas that could be causing the issue.
To include data from related child records, the app builder could use roll-up summary fields or Apex triggers instead


質問 # 92
A business user wants a quick way to edit a record's status and enter a custom due date field from the record's feed in Salesforce Mobile App.
What could be used to accomplish this?

  • A. Custom action
  • B. Custom button
  • C. Custom quick access link
  • D. Custom URL formula field

正解:A


質問 # 93
UC has a requirement that an opportunity should have a field showing the value of its associated account's billing state. This value should not change after the opportunity has been created. Is there a recommended solution to configure this automated behavior?

  • A. Formula field
  • B. Apex
  • C. Workflow
  • D. Roll-up summary field

正解:C

解説:
Apex. This is correct because Apex is a programming language that can perform complex logic and manipulate data in Salesforce. Apex can be used to create a trigger on the opportunity object that copies the value of the billing state from the related account record when the opportunity is created, and prevents it from being changed afterwards. The other options are not suitable for this requirement because they either cannot copy data from a related object (formula field, roll-up summary field) or cannot prevent data from being changed (workflow).


質問 # 94
Which two are capabilities of record types? (Choose two.)

  • A. Displaying different page layouts.
  • B. Having multiple record types on one record.
  • C. Filtering picklist values.
  • D. Displaying different field labels.

正解:A、C


質問 # 95
Which statement about record types is true? (Choose two.)

  • A. Users cannot view records assigned to a record type their profile does not have access to.
  • B. Record types can be used to define picklist values available for a given field.
  • C. The ability to create records of a specific record type is determined by the profile.
  • D. Record types can only be assigned to one profile at a time.

正解:B、C


質問 # 96
Universal containers uses a private Account sharing model. They have a Process Improvement team with representatives from multiple departments that need s to view all accounts that have been flagged as problem accounts. How should this team be granted access to the records?

  • A. Use a record owner sharing rule that is shared with the Process Improvement role
  • B. User a record Owner sharing rule that is shared with the Process Improvement public group
  • C. Option 5
  • D. Write a trigger to use Apex Managed Sharing to grant access with the Process Improvement team
  • E. Use a criteria-based sharing rule where the account are shared with the Process Improvement public group

正解:E


質問 # 97
Universal Containers has Public Read/Write as the Account organization-wide default (OWD) setting. Visitors to the customer community site report that they can see all of the company's account records.
How should an app builder configure Account sharing so that community users only see their own Account?

  • A. Define a permission set for external accounts.
  • B. Set the account external OWD to private.
  • C. Define an owner-based sharing rule for external accounts.
  • D. Create an account record type for external accounts.

正解:B

解説:
The best way to configure Account sharing so that community users only see their own Account is to set the account external OWD to private. This will restrict the access to Account records for external users based on the sharing rules and criteria. Creating an account record type, defining an owner-based sharing rule, or defining a permission set will not prevent community users from seeing other accounts.


質問 # 98
Universal Containers is setting up salesforce for the first time. Management wants the sales and marketing teams to have different navigation names in the salesforce1 mobile app. Which option is available to an app builder to satisfy the requirement?

  • A. Create mobile navigation menus for both the sales and marketing profiles.
  • B. Create public groups for sales and marketing and create mobile navigation menus for each group.
  • C. Create roles for sales and marketing and assign a custom homepage layout for each role.
  • D. Create sales and marketing profiles to ensure read access to different objects

正解:A

解説:
Create mobile navigation menus for both the sales and marketing profiles. This is correct because mobile navigation menus allow users to customize the items that appear in the navigation bar of the Salesforce mobile app, and they can be assigned to different profiles.


質問 # 99
Your company has a Custom Object called Projects with a Lookup relationship to Opportunities. Once an Opportunity is closed won a project needs to be created automatically and assigned to a queue.
How would you best accomplish this requirement?

  • A. Apex Trigger on Projects
  • B. Apex Trigger on Opportunities
  • C. Visual Flow
  • D. Lightning Process Builder

正解:D


質問 # 100
An app builder created multiple custom fields, page layouts, and reports in the sandbox and added them to a change set was deployed to production, the reports were NOT deployed.
What should the app builder do?

  • A. Move the reports to the Untried Public Reports folder and add them to a new change set.
  • B. Recreate the reports in production. Reports are not supported in change sets
  • C. Add the reports to an unmanaged package and install the unmanaged package into production.
  • D. Move the reports from the Unfiled Public Reports folder and add them to a new change set

正解:D

解説:
Moving the reports from the Unfiled Public Reports folder and adding them to a new change set is what the app builder should do to deploy the reports to production. According to the Salesforce documentation, "Reports in the Unfiled Public Reports folder aren't available for deployment." Moving the reports to the Untried Public Reports folder, recreating the reports in production, and adding the reports to an unmanaged package are not necessary or recommended actions.


質問 # 101
On the Account Lightning record page, users need to see ten fields and the ability to sort and wrap text on their Related Lists.
What Related List type would the app builder select for the Related List Lightning component?

  • A. Basic List
  • B. Enhanced List
  • C. ListVlew
  • D. List Class

正解:B


質問 # 102
The Director of Customer Services wants to know when agents are overwhelmed with high-priority items in the support queue. The Director wants to receive a notification when a new case is open with the status of "New" for more than four business hours.
Which two automation processes should be used to accomplish this? (Choose two.)

  • A. Escalation rules
  • B. Scheduled Apex
  • C. Process Builder
  • D. Flow Builder

正解:A、C


質問 # 103
An app builder at Cloud Kicks created a custom 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 fields7

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

正解:B


質問 # 104
Universal containers allows users to create standard reports on demand. What are two considerations users should be aware of when creating a new report?

  • A. Reports created from standard report types are available to all users
  • B. Users can require that child objects exist for parent records using a cross filter
  • C. Records will be available in the in the report regardless of security permissions
  • D. The report type determines the types of records and fields that will be available

正解:D


質問 # 105
......

実際問題を使ってCRT-403問題集で100%無料CRT-403試験問題集:https://www.passtest.jp/Salesforce/CRT-403-shiken.html

実際に出ると確認されたのCRT-403試験問題集と解答でCRT-403無料更新:https://drive.google.com/open?id=1IGM69Kk_MhxKo6wyfOsPabdPRLlPnNFg