Authentic Salesforce CRT-403 Exam Dumps PDF - Feb-2024 Updated [Q50-Q69]

Share

Authentic Salesforce CRT-403 Exam Dumps PDF - Feb-2024 Updated

CRT-403 Dumps Special Discount for limited time Try FOR FREE

NEW QUESTION # 50
When scheduling automatic data exporting with the Data Export Wizard, you must specify all of the following except __________.

  • A. Number of attachments
  • B. Time of day
  • C. Start and end dates
  • D. Frequency, if your organization supports monthly exports

Answer: A


NEW QUESTION # 51
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. Related record
  • B. Highlights panel
  • C. Activities
  • D. Related lists

Answer: B

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.


NEW QUESTION # 52
Which two statements are true about record types? Choose two answers

  • A. They allow different page layouts and mandatory fields
  • B. They can be used to control user role hierarchy
  • C. They allow different picklist values for all picklist fields
  • D. They can be enabled by profile and permission set

Answer: A,C


NEW QUESTION # 53
Which three Salesforce functionalities are ignored when processing field updates in workflow rules and approval processes? (Choose three.)

  • A. Decimal places and character limits
  • B. Field-level security
  • C. Validation rules
  • D. Record type picklist value assignments
  • E. Multiple currencies

Answer: A,D,E


NEW QUESTION # 54
A user asks for a checkbox to be automatically ticked if the annual revenue field is greater than a million.
Which formula to trigger a workflow would satisfy this requirement?

  • A. AnnualRevenue > 1000000 , TRUE, FALSE
  • B. AnnualRevenue
  • C. AnnualRevenue > 1000000
  • D. IF(AnnualRevenue > 1000000 ,"TRUE","FALSE")

Answer: C


NEW QUESTION # 55
At Universal Containers, the VP of Service has requested a visual indicator flag on each case, based on the case priority. High-priority cases should be flagged red, medium-priority should be flagged yellow, and low-priority cases should be flagged green. Which formula would accomplish this requirement? Choose 2 answers

  • A. CASE(Priority, "Low", "img/samples/flag_green.gif", "Medium", "img/samples/flag_yellow.gif", "High", "img/samples/flag_red.gif", "/s.gif")
  • B. 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"))), "Priority Flag")
  • C. 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")))
  • D. IMAGE (CASE( Priority, "Low", "img/samples/flag_green.gif", "Medium", "img/samples/flag_yellow.gif", "High", "img/samples/flag_red.gif", "Priority Flag")

Answer: A,D

Explanation:
The formula for creating a visual indicator flag on each case based on the case priority should use the IMAGE and CASE functions. The IMAGE function returns an image for a given URL, and the CASE function evaluates an expression and returns a value based on that expression. Option A and D use these functions correctly, while option B and C do not.


NEW QUESTION # 56
An App Builder wants to deploy a new version of an auto launched flow to production in an active state so that the new functionality Is immediately available to users What should the App Builder rake into consideration when planning the deployment?

  • A. Grant user access to the Flow.
  • B. Verify there is an Apex test that provides test coverage for the Flow.
  • C. Include the Process Builder calling the Flow In the deployment
  • D. Manually activate the Flow after deployment

Answer: B

Explanation:
The app builder should verify that there is an Apex test that provides test coverage for the Flow. An Apex test is a unit test that verifies the functionality and quality of Apex code. Apex tests are required to deploy any change that contains Apex code or references Apex code, such as an auto launched flow3. The app builder should ensure that there is an Apex test that covers at least 75% of the Flow logic before deploying it to production in an active state4. Option B, C, and D are not things that the app builder should take into consideration when planning the deployment.


NEW QUESTION # 57
What is a true statement regarding master-detail relationships? Choose 3 answers

  • A. Standard objects can be on the detail side of a custom object in a master-details relationship
  • B. Master-detail relationship can be convert to a lookup relationship if no roll-up summary fields exist on the master object
  • C. A master-detail relationship cannot be created if the custom object on the detail side already contains data
  • D. Deleting a master record in a master-detail relationship deletes all related detail records
  • E. Master-detail relationships cannot be converted to a look-up relationship

Answer: B,C,D


NEW QUESTION # 58
The app builder at Universal Containers has been asked to ensure that when an Opportunity record exceeding $20k is being saved, details have been captured in the Comments field.
What can be used to meet this requirement?

  • A. Workflow
  • B. Validation Rule
  • C. Approval Process
  • D. Process Builder

Answer: B


NEW QUESTION # 59
Cloud Kicks (CK) Is finding sales reps are Inconsistent in data entry when deals are won. CK requires that custom shoes are shipped within two weeks after the close date. A custom field called Scheduled Ship Date on the opportunity records the ship date.How should the app butler ensure this field is properly filed out before setting the opportunity to closed won?

  • A. ISPICKVAL( StageName= CloseDate ) > 14,losed Won") && ( CloseDateScheduled_Ship_Date_c) >14
  • B. OR(ISPICKVAL( StageName ,"Closed Won") && ( Scheduled_Ship_Date_cCloseDate)>14,ISBLANK(Scheduled_Ship_Date_c))
  • C. ISPICKVAL( StageName ,"Closed Won") && ( Scheduled _Ship_Date_c-CloseDate ) > 14
  • D. OR(ISPICKVAL( StageName ="Closed Won") && ( Scheduled_Ship_Date__c- CloseDate ) > 14,ISBLANK(Scheduled_Ship_Date__c))

Answer: B

Explanation:
The correct validation rule formula to ensure that the Scheduled Ship Date field is properly filled out before setting the Opportunity to Closed Won is:
OR(ISPICKVAL( StageName ,"Closed Won") && ( Scheduled_Ship_Date_cCloseDate)>14,ISBLANK(Scheduled_Ship_Date_c)) This formula checks two conditions: if the StageName is Closed Won and the Scheduled Ship Date is more than 14 days after the Close Date, or if the Scheduled Ship Date is blank. If either condition is true, the validation rule will fire and prevent saving the record. The other formulas are incorrect because they either use incorrect syntax (such as "=" instead of "," or missing parentheses) or incorrect logic (such as checking if the Scheduled Ship Date is less than 14 days after the Close Date)


NEW QUESTION # 60
Which type of relationships can be defined with external objects? Choose 2 answers

  • A. External Master-Detail
  • B. External Lookup
  • C. Indirect Lookup
  • D. Cross-Ogranization Lookup

Answer: B,C


NEW QUESTION # 61
An app builder installed a custom Lightning component from AppExchange and has deployed My Domain.
What should be done next in order to configure the component for use in a record page?

  • A. Edit a record page using the Page Layout editor > Drag the Visualforce component onto the page.
  • B. Edit a record page using Lightning App Builder > Drag the component onto the page.
  • C. Edit a record page using the Page Layout editor > Drag the component onto the page.
  • D. Edit a record page using App Manager > Drag the component onto the page.

Answer: B


NEW QUESTION # 62
What is the capability of schema Builder? Choose 2 Answers

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

Answer: B,D


NEW QUESTION # 63
Universal Containers needsto send an Outbound Message to an external system whenrecord has been updated.
What is recommended feature to meet this requirement?

  • A. Visual Workflow
  • B. Process Builder
  • C. Workflow
  • D. Lightning Connect

Answer: C


NEW QUESTION # 64
An app builder wants to create a new field using Schema Builder.
Who will get access to the new field by default?

  • A. No profiles
  • B. Internal profiles
  • C. Standard profiles
  • D. All profiles

Answer: D

Explanation:
All profiles will get access to the new field by default when it is created using Schema Builder. The app builder can modify the field-level security settings later to restrict access for certain profiles. Standard profiles, no profiles, and internal profiles are not correct options.


NEW QUESTION # 65
Which two objects can be members of a Campaign? (Choose two.)

  • A. Opportunity
  • B. Account
  • C. Contact
  • D. Lead

Answer: C,D


NEW QUESTION # 66
Universal Container wants customers to be able to open cases from a public-facing website.
What should the app builder use to enable visitors to the website?

  • A. Screen flow
  • B. Web-to-case
  • C. Email-to-case
  • D. Outbound message

Answer: B


NEW QUESTION # 67
Ursa Major Solar is ramping up the sales team to meet increased demand. As part of the short ramp up for these new reps, the manager wants to provide a help guide to enable reps to easily get help where needed during the different sales processes.
Which solution should an app builder recommend?

  • A. Journey Builder
  • B. Chatter Publisher
  • C. Flow
  • D. Path

Answer: D


NEW QUESTION # 68
What is a true statement in regards to creating custom report types?

  • A. The detail object in a master- detail relationship cannot be added as a secondary object on a custom report type
  • B. Any object can be chosen unless the object is no visible to the person creating the report type through security settings
  • C. Once a report type is saved with a standard or custom primary object, the primary object cannot be changed for that report type.
  • D. When the primary object is a custom object and is deleted, then the report type and any reports created from it must be deleted manually.

Answer: C

Explanation:
Explanation: You can choose from all objects-even those you don't have permission to view. This lets you build report types for a variety of users. Once you save a report type, you can't change the primary object. If the primary object on a report type is a custom object, and the custom object is deleted, then the report type and any reports created from it are automatically deleted. If you remove an object from a report type, all references to that object and its associated objects are automatically removed from reports and dashboards based on that type. http://help.salesforce.com/apex/htviewhelpdoc?id=reports_defining_report_types.htm&language=en_us


NEW QUESTION # 69
......

CRT-403 Dumps for success in Actual Exam: https://passleader.testpassking.com/CRT-403-exam-testking-pass.html