2024年02月最新のSalesforce CRT-403問題集で更新された233問あります [Q39-Q63]

Share

2024年02月最新のSalesforce CRT-403問題集で更新された233問あります

PDF無料ダウンロードにはCRT-403有効な練習テスト問題


Salesforce CRT-403 認定試験は、Salesforce プラットフォーム上でカスタムアプリケーションを構築する知識とスキルを持った個人を試験するために設計されています。この認定試験は、Salesforce プラットフォームを使用する経験があり、カスタムアプリケーションを構築するスキルを証明したい個人を対象としています。試験は、データモデリングと管理、ユーザーインターフェース、ロジックとプロセス自動化、セキュリティなどのさまざまなトピックをカバーしています。

 

質問 # 39
Cloud Kicks wants to start tracking how many shoe subscriptions have been sold for each shoe catalog. A master-detail relationship exists between the Subscription__c and the Shoe__c objects.
Which type of field should an app builder create?

  • A. Master-detail relationship field
  • B. Lookup field
  • C. Roll-up summary field
  • D. Number field

正解:C

解説:
To start tracking how many shoe subscriptions have been sold for each shoe catalog, a roll-up summary field should be created. A roll-up summary field calculates values from related records on a master-detail relationship. It can count, sum, min, or max numeric values from child records on a parent record.


質問 # 40
ABC Company has a workflow on opportunity that will change the status field to "In Progress" when the Stage field is changed "Negotiation." In addition, there is a validation rule on Status that will prevent the status being set to "In Progress" if the amount of the opportunity is less than $10,000. A user named Frank does not have FLS to see status.
When Frank changes opportunities to a stage of "Negotiation" the status is still being changed to "In Progress", why is this occurring?

  • A. Updates to records based on workflow rules don't trigger validation rules, workflow rules can invalidate previously valid field.
  • B. Field Level Security prevents the validation rule from running.
  • C. Workflow rules occur after validation rules and thus override validation rules.

正解:A


質問 # 41
Which of the following is not a valid return type of a custom formula?

  • A. Text
  • B. Decimal
  • C. Array
  • D. Date

正解:C


質問 # 42
Universal Containers wants to display a message when an opportunity close date is less than 60 days in the future.
What can be used to display different text on the opportunity record depending on the number of days until the target close date?

  • A. Formula Field
  • B. Sales Process
  • C. Workflow Update
  • D. Process Builder

正解:A


質問 # 43
Northern Trail Outfitters uses a custom object to track travel requests. Rangers want to have automatic posts on a record whenever a travel request has been approved.
Which feature should be used to accomplish this?

  • A. Feed tracking
  • B. Feed quick action
  • C. Workflow rule
  • D. Auto-response rule

正解:A


質問 # 44
Universal Containers uses a private Account sharing model. They have a Process Improvement team with representatives from multiple departments that needs 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. Use a criteria-based sharing rule where the accounts are shared with the Process Improvement public group.
  • C. Use a record owner sharing rule that is shared with the Process Improvement public group.
  • D. Write a trigger to use Apex Managed Sharing to grant access with the Process Improvement team.

正解:B


質問 # 45
Cloud Kicks has five years of sales data and would like to track when customers made their first purchase. How should an app builder use a roll-up summary to meet the requirements?

  • A. Create a new date field called First Order Date, then create a roll-up summary to update the field using Type MIN.
  • B. Create a new roll-up summary field called First Order Date, using Type SUM on Opportunity Close Date.
  • C. Create a new date field called First Order Date, create a new Workflow to set the date, and roll up the value with a filter where IsWon = TRUE.
  • D. Create a new roll-up summary field called First Order Date, using Type MIN on the Opportunity Close Date with a filter where IsWon = TRUE.

正解:D

解説:
The app builder should create a new roll-up summary field called First Order Date, using Type MIN on the Opportunity Close Date with a filter where IsWon = TRUE. A roll-up summary field is a type of field that calculates values from related records and displays them on the parent record. In this case, the app builder can create a roll-up summary field on the Account object that calculates the minimum (earliest) value of the Opportunity Close Date field from the related opportunities where IsWon = TRUE. This will show when customers made their first purchase. Option B, C, and D are not correct ways to use a roll-up summary field to meet the requirement.


質問 # 46
You have created a workflow rule to send an e-mail in your configuration sandbox. For some reason it's not working, what should you double check? (Choose two.)

  • A. HTML does not work in sandbox, make sure your e-mail has no HTML.
  • B. You have the correct e-mail address.
  • C. Check the deliverability settings.
  • D. Look at the system audit trail.

正解:B、C


質問 # 47
Universal Containers wants to create a report to show job applications with or without resumes.
What considerations should the app builder be aware of when creating the custom report type?

  • A. When a custom or external object is deleted the report type and reports remain but cause an error when the report is run.
  • B. An app builder is unable to create custom report types for objects they do not have permissions for.
  • C. Once the report type has been deployed it is unable to be deleted.
  • D. A primary object selection is locked once the custom report type has been saved.

正解:D

解説:
The primary object selection is locked once the custom report type has been saved. This means that the app builder cannot change the primary object later. The other options are not true.


質問 # 48
Universal Containers would like to automatically assign a specific permission set to new users.
Which two actions should be completed in order to meet this requirement? (Choose two.)

  • A. Create a Flow on the User object to assign a permission set.
  • B. Create a workflow rule on the User object to assign a permission set.
  • C. Create a Process on the User object to launch a flow.
  • D. Create an Approval process on the User object to assign a permission set.

正解:A、C


質問 # 49
What should be done to create a custom object from the Schema Builder?

  • A. Right-click in the canvas and select "New Object".
  • B. From the Elements tab, drag Object onto the canvas.
  • C. From the Objects tab, select New>Object.

正解:B


質問 # 50
accounts and a secondary master detail relationship with contacts. The app builder has requirement to change the primary master relationship to lookup. What happens to the master detail relationship with contacts?

  • A. The contacts master detail becomes the primary
  • B. The contacts master detail also converts to lookup
  • C. The contacts master detail values are cleared from invoice
  • D. The contacts master detail field is deleted from the object

正解:A


質問 # 51
What order does SF process rules?

  • A. Auto-response rules, Validation rules, assignment rules, workflow rules, escalation rules.
  • B. Validation rules, assignment rules, auto-response rules, workflow rules, escalation rules.
  • C. Escalation rules, Validation rules, assignment rules, auto-response rules, workflow rules.
  • D. Validation rules, assignment rules, workflow rules, auto-response rules, escalation rules.

正解:B


質問 # 52
The app builder at Ursa Major Solar has just created a master-detail relationship between a parent object Galaxy__c and child object Star__c.
What would be the effect of creating this type of relationship if users want to report on Galaxy__c with Star__c?

  • A. A new custom report type will need to be created for Star__c with lookup fields from Galaxy__c.
  • B. A Star__c report typewith Galaxy__c as a field will be automatically created.
  • C. A Galaxy__c with Star__c report type will be automatically created.
  • D. A new custom report type will need to be created for Galaxy__c with Star__c.

正解:C

解説:
A master-detail relationship between two objects automatically creates a report type that includes both objects. The app builder does not need to create a custom report type for this scenario. The report type will have the format of Parent object with Child object


質問 # 53
The previous administrator of Cloud Kicks' (CK) Salesforce Organization used text as the field type when creating new custom fields. CK's current roadmap requires a project that will clean this up during the Lightning migration.
Which three field types should be considered to keep better track of contact information in fields?
Choose 3 answers

  • A. Time
  • B. Phone
  • C. Email
  • D. Date
  • E. Number

正解:B、C、E


質問 # 54
An app builder has downloaded a component from the AppExchange successfully; however, they are unable to add it to the Lightning home page.
Which two reasons can be preventing the app builder from being able to add the custom component?
Choose 2 answers

  • A. A custom tab must be created to add custom components to the page with the App Builder.
  • B. The component requires a developer permission to add it to the page with the App Builder.
  • C. My Domain must be deployed to add custom components to the page with the App Builder.
  • D. The component is tagged for record pages instead of home pages and is not showing up in the App Builder.

正解:C、D

解説:
Two reasons that can prevent an app builder from adding a custom component to the Lightning home page are if My Domain is not deployed, or if the component is tagged for record pages instead of home pages. My Domain must be deployed to add custom components to the page with the App Builder, as it enables Lightning components and other features. The component must be tagged for home pages in its configuration file, otherwise it will not show up in the App Builder for home pages


質問 # 55
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. Formula field limit reached on the Account object.
  • C. A master-detail relationship should be created.
  • D. More than 5,000 characters in the formula.

正解:A

解説:
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


質問 # 56
In a master-detail relationship scenario, the fields of the parent object need to be displayed in the related list.
How will a developer achieve this design?

  • A. Validation rule
  • B. Cross-object formula field
  • C. Workflow rule
  • D. Assignment rule

正解:B


質問 # 57
Universal Containers wants to create a report to show job applications with or without resumes.
What considerations should the app builder be aware of when creating the custom report type?

  • A. When a custom or external object is deleted the report type and reports remain but cause an error when the report is run.
  • B. An app builder is unable to create custom report types for objects they do not have permissions for.
  • C. Once the report type has been deployed it is unable to be deleted.
  • D. A primary object selection is locked once the custom report type has been saved.

正解:D


質問 # 58
What should an app builder consider when choosing a template for a new Lightning record page?

  • A. The template is unable to be changed after the initial save.
  • B. Select a new template for each type of device users use to view the record page.
  • C. A Page structure will automatically adapt to the device being used to view the record page.
  • D. To view the record page, users need "View All Data" permissions for the object.

正解:C

解説:
A template for a new Lightning record page determines how the page is divided into regions. The template is responsive and will automatically adapt to the device being used to view the record page. The template can be changed after the initial save, and users do not need "View All Data" permissions for the object


質問 # 59
The DreamHouse Realty (DR) service manager has asked for some improvements in case management to enforce process compliance so that cases are unable to be reverted to an earlier case status, and to ensure that certain fields are required when specific case criteria are met.
What solution should an app builder implement to meet these requirements?

  • A. Workflow Rules
  • B. A Validation Rules
  • C. Activities Component
  • D. Process Builder

正解:B


質問 # 60
The VP of sales requested that Account Site Information should be visible on an Opportunity record. What is the recommended salutation to meet this requirement?

  • A. Roll-Up Summary Field
  • B. Cross-Object Formula Field
  • C. Workflow Rule
  • D. Process Builder

正解:B


質問 # 61
Universal container would like to use a chatter group for their mergers and acquisitions team to collaborate on potential new projects. This project should not be visible for non-members to see or join, and can be accessed by invites only.

  • A. Unlisted group
  • B. Private group
  • C. Public group
  • D. Member group

正解:A


質問 # 62
An app builder has deployed a change set from a sandbox to production. There is a long delay in the deployment.
What can be causing the delay?

  • A. Dependent fields are included in the change set.
  • B. A field type change is included in the change set.
  • C. Profiles are included in the change set.
  • D. Roles are included in the change set.

正解:B


質問 # 63
......

CRT-403テストエンジンお試しセット、CRT-403問題集PDF:https://www.passtest.jp/Salesforce/CRT-403-shiken.html

最新のSalesforce CRT-403のPDFと問題集で(2024)無料試験問題解答はここ:https://drive.google.com/open?id=1khLq5vON9K7R362MWRynmt9_Gg7SuyjH