[Q153-Q169] 検証済みCRT-403問題集PDF資料 [2024]

Share

検証済みCRT-403問題集PDF資料 [2024]

最新のCRT-403実際の無料試験問題更新された290問あります

質問 # 153
An app builder at Ursa Major Solar has been working on a new custom app in a sandbox that has been upgraded to the next major Salesforce version, and their production instance is still on the current Salesforce version. The development is complete and they are ready to deploy a change set.
What should the app builder consider when planning the deployment?

  • A. The change set will be automatically deployed when production is upgraded.
  • B. The deployment is not possible due to different versions.
  • C. It will fall if there is a feature only available in the next version.
  • D. The change set components will be upgraded to the next version in production.

正解:C

解説:
It will fail if there is a feature only available in the next version. According to the Salesforce documentation, "If your sandbox is on a newer version than your production org, you can't deploy any components that are new in the sandbox version." The change set components will not be upgraded to the next version in production, the change set will not be automatically deployed when production is upgraded, and the deployment is possible if there are no new features involved.


質問 # 154
Use Data Loader when __________. (Choose three.)

  • A. You need to load 50,000 to five million records. If you need to load more than 5 million records, we recommend you work with a Salesforce partner or visit the AppExchange for a suitable partner product.
  • B. You want to schedule regular data loads, such as nightly imports.
  • C. You need to load into an object that is not supported by the Data Import Wizard.
  • D. You don't need the import process to be automated.

正解:A、B、C


質問 # 155
An app builder wants to create a report to compare the number of support cases in each status (New, In-progress, or Closed) and by priority (Critical, High, Medium, or Low).
What solution should be used for the report?

  • A. Grouping
  • B. Bucket Columns
  • C. Custom Report Type
  • D. Filters

正解:B


質問 # 156
Universal Containers has created the custom objects Candidate and Interview in Salesforce to track candidates and interviews respectively. The company wants to track the total number of interviews a candidate has gone through on the candidate record without writing any code.
Which two actions should an app builder take to accomplish this requirement? (Choose two.)

  • A. Use a master-detail relationship between the Candidate and Interview objects.
  • B. Use a lookup relationship between the Candidate and Interview objects.
  • C. Use a roll-up summary field on the Candidate record to show the total number of interviews.
  • D. Use a formula field on the Candidate record to show the total number of interviews.

正解:A、C


質問 # 157
Which two are capabilities of Schema Builder? (Choose two.)

  • A. Viewing page layouts in a new window.
  • B. Showing selected objects on a page.
  • C. Editing custom settings.
  • D. Creating a new record type.

正解:A、B


質問 # 158
Cloud Kicks has leads owned by users and queues. The sales manager wants the status to change to working when a user takes ownership.
What does an app builder need to have in the criteria to ensure the process runs without error?

  • A. NOT(ISBLANK([Lead].OwnerId))
  • B. BEGINS([Lead].OwnerId, ,,005")
  • C. [Lead].Owner:Queue.OwnerId Is Null = True
  • D. [Lead].Owner:User.Role Is Null = False

正解:A


質問 # 159
An app builder is creating a custom object called Testimonial__c and wants toconnect Testimonial__c records with both the submitter's Contact record and Account record. If the Account is deleted, the Testimonial__c should also be deleted. If the Contact is deleted, but the Account remains, the Testimonial__c should remain.
How should this be accomplished?

  • A. Create a master-detail relationship from Testimonial__c to Accountand a lookup relationship from Testimonial__c to Contact.
  • B. Make both the Contact and Account fields required on the Testimonial__c object and create lookup relationships fromTestimonial__c to Contact and to Account.
  • C. Create a lookup relationship from Testimonial__c to Account and a master-detail relationship from Testimonial__c to Contact.
  • D. Make Testimonial__c a junction object between Account and Contact using master-detail relationships.

正解:A

解説:
To connect Testimonial__c records with both the submitter's Contact record and Account record, an app builder should create a master-detail relationship from Testimonial__c to Account and a lookup relationship from Testimonial__c to Contact. A master-detail relationship creates a parent-child relationship between two objects and allows for roll-up summary fields, sharing settings, and cascading actions. A lookup relationship creates a loose association between two objects and allows users to relate records from one object to another. Source


質問 # 160
What objects are supported by the Import Wizard?

  • A. Leads
  • B. All of the above
  • C. Custom objects
  • D. Contacts
  • E. Accounts
  • F. Solutions

正解:B


質問 # 161
Universal Containers has a Lightning record page that supports both the mobile app and desktop. An app builder has downloaded a custom Lightning component from AppExchange, but users are unable to view the component on mobile devices.
What can be the issue?

  • A. The record page needs to be activated.
  • B. The component has been developed for Desktop Pages.
  • C. The record page template is unable to support mobile devices.
  • D. The component needs to be activated.

正解:B


質問 # 162
What is not true regarding relating Tasks and Events to other objects?

  • A. Contacts are associated via the WhatID.
  • B. Custom Objects are associated via the What ID.
  • C. Assets are associated via the WhatID.
  • D. Leads are associated via the WhoID.
  • E. Accounts are associated via the WhatID or AccountID.

正解:A


質問 # 163
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. Related lists
  • D. Highlights panel

正解:A


質問 # 164
Universal Containers utilizes opportunities and a custom object called Detaited.Sales__c. The company would like to roll sales metrics up to an opportunity for only Detailed.Sales__c records that have their picklist status set to Active.
What is the recommended method for the app bunder to achieve this request?

  • A. Utilize the AppExchange to download a third-party application that can roH up the sales dollars with the appropriate filter.
  • B. Create a lookup relationship between the parent and child object with a roll-up summary held that filters on the status field.
  • C. Utilize Apex code to roll up the desired amounts.
  • D. Create a master-detail relationship between the parent and child object with a roll-up summary field that fitters on the status held.

正解:D

解説:
Create a master-detail relationship between the parent and child object with a roll-up summary field that filters on the status field is the recommended method for the app builder to achieve the request of rolling up sales metrics to an opportunity for only Detailed.Sales__c records that have their picklist status set to Active. According to the Salesforce documentation, "Roll-up summary fields calculate values from related records, such as those in a master-detail relationship." A roll-up summary field can filter on a field value of the child records and sum up only those records that match the criteria. Utilize the AppExchange to download a third-party application that can roll up the sales dollars with the appropriate filter, create a lookup relationship between the parent and child object with a roll-up summary field that filters on the status field, and utilize Apex code to roll up the desired amounts are not valid or necessary methods for this request.


質問 # 165
Cloud Kicks recently implemented the application lifecycle management process to its release management strategy.
Which category handles bug fixes and simple changes?

  • A. Patch
  • B. Rollback
  • C. Major
  • D. Minor

正解:D

解説:
The category that handles bug fixes and simple changes is minor. A minor release is a type of release that introduces small enhancements or fixes to existing functionality, such as correcting spelling errors or improving performance. A minor release usually has a low impact on users and does not require extensive testing or training. A patch release is a type of release that addresses critical issues or defects that affect the functionality or security of an application, such as fixing broken links or resolving vulnerabilities. A patch release usually has a high impact on users and requires immediate deployment. A major release is a type of release that introduces new functionality or features to an application, such as adding new objects or components or changing business processes. A major release usually has a high impact on users and requires extensive testing and training. A rollback is not a type of release, but an action that reverses a release that has been deployed to an environment, such as undoing changes or restoring previous versions. A rollback may be necessary if a release causes errors or issues that affect the functionality or performance of an application.


質問 # 166
All of the following are advantages of the Schema Builder except __________.

  • A. All object and field relationship details are available from one screen.
  • B. You can view fields and relationships for custom, but not standard objects.
  • C. It's easy to build objects and fields directly from the Schema Builder, allowing you to visualize and change relationships with ease.
  • D. Schema Builder shows details like field values, required fields, and how objects are related.

正解:B


質問 # 167
You are explaining to another developer, who is not familiar with Force.com, how an external ID field can be used to work with data coming from another system. What features would you mention? Choose 3 answers.

  • A. An external ID can be either text, number or email data types
  • B. An external ID is used to represent an identifier for a record from an external system
  • C. An external ID is indexed and increases query performance
  • D. External IDs are not case sensitive

正解:A、B、C


質問 # 168
Universal Containers has several new fields they've requested for the Opportunity Product object.
What should an app builder be able to configure using a formula field?

  • A. A mix of functions and concatenation of 10 Account fields and 10 Opportunity fields.
  • B. A combination of the Opportunity's Text and a Description fields.
  • C. A hyperlink to the parent Account of the parent Opportunity.
  • D. A Rich Text area field that uses HTML to bold certain characters.

正解:B

解説:
Formula fields in Salesforce can use various functions including text, mathematical, and logical functions to create simple or complex expressions. They can handle data from fields of the same record. Option C, "A combination of the Opportunity's Text and a Description fields," is a valid configuration for a formula field as it involves simple concatenation of text fields, which is supported.
Options A, B, and D exceed the capabilities of formula fields:
A: Hyperlinks to other objects using formula fields do not directly support navigation to parent records of a different object.
B: Rich Text and HTML formatting are not supported in formula fields.
D: Formula fields have limits in their complexity and field references which would make mixing numerous fields from different related objects impractical and likely exceed formula size limits.
Reference: Formula Field Overview on Salesforce Developer Guide


質問 # 169
......

CRT-403認定概要最新のCRT-403PDF問題集はこちら:https://www.passtest.jp/Salesforce/CRT-403-shiken.html

無料CRT-403試験ブレーン問題集認定ガイド問題と解答:https://drive.google.com/open?id=1IGM69Kk_MhxKo6wyfOsPabdPRLlPnNFg