Get Latest [Nov-2024] Conduct effective penetration tests using Real4Prep Platform-App-Builder
Penetration testers simulate Platform-App-Builder exam PDF
NEW QUESTION # 14
Which three Salesforce functionalities are ignored when process field updates in workflow rules and approval processes?
- A. Record type picklist value assignments
- B. Validation Rules
- C. Multiple currencies
- D. Field-Level Security
- E. Decimal places and character limits
Answer: A,B,D
NEW QUESTION # 15
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. Once a report type is saved with a standard or custom primary object, the primary object cannot be changed for that report type.
- C. Any object can be chosen unless the object is no visible to the person creating the report type through security settings
- 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: B
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 # 16
Cloud Kicks (CK) wants to quickly insert a list of over 60,000 net new Accounts. The template based on CK's data model was used to populate the list.
Which tool should be used?
- A. Import Wizard
- B. Schema Builder
- C. Data Loader
- D. A Lightning Object Creator
Answer: A
NEW QUESTION # 17
Cloud Kicks is redefining its entire business process to convert the Manager Notes field from a long text area field. The goal is to encourage managers to be more concise in their comments and stayat 255 characters or less. There is preexisting information in the Manager Notes field that often is well beyond the character limit.
What would happen to any existing information if the app builder tries to convert a preexisting long text area field to text area?
- A. Preexisting information in the field will be completely lost.
- B. Preexisting information will truncate to the first 255 characters.
- C. Preexisting information will remain even if it was over 255 characters.
- D. Preexisting information will cause a- e-r0- -essace to poo up.
Answer: B
Explanation:
Explanation
If the app builder tries to convert a preexisting long text area field to text area, preexisting information will truncate to the first 255 characters. This means that any information beyond 255 characters will be lost. Option B is incorrect because preexisting information will not remain if it was over 255 characters. Option C is incorrect because preexisting information will not cause an error message to pop up. Option D is incorrect because preexisting information in the field will not be completely lost, only truncated.
NEW QUESTION # 18
DRAG DROP
In what order does Salesforce process rules?
Match the rules from the left column with their appropriate order in the right column.
Select and Place:
Answer:
Explanation:
NEW QUESTION # 19
You are building a project mgmt app. According to the design given to you, a project must store info regarding the various functional modules under it. Each functional module must store info regarding responsibility assigned to each developer. Info about the responsibility must have info about the due date and status.
What could be the most optimal model to achieve this?
- A. Create Project, Module, Responsibility as parent, child and grandchild objects.
- B. Create a Project object then Modules as a child object. Add Tasks to Modules.
- C. Create Project and Module objects then Responsibility as a junction object.
- D. Create a Project then add Tasks to it. Define Modules as a field on Task.
Answer: B
NEW QUESTION # 20
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. Count
- B. Min
- C. Sum
- D. Q Max
Answer: C
Explanation:
Explanation
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.
NEW QUESTION # 21
An Alexa Skill Builder is developing a skill that enables users to purchase train tickets. The Builder wants to give users the ability to modify the departure time if they are misunderstood, before the skill proceeds to purchase the tickets.
Which option should be used to implement this functionality within the session?
- A. Implement AMAZON.FallbackIntentso the user can stop the execution when they have been misunderstood.
- B. Implement AMAZON.StopIntentso the user can stop the execution and implement repromptwith a new invocation of the skill.
- C. Implement AMAZON.CancelIntentso the user can cancel the order, then set shouldEndSession to false, and prompt the user for the next action.
- D. Implement the welcome message, providing clear instructions to the user describing how to format an order.
Answer: C
NEW QUESTION # 22
An Alexa Skill Builder wants to name a skill using a company's branded acronym, "NAT Systems." Which invocation name is valid?
- A. NAT Systems
- B. n a t systems
- C. n-a-t systems
- D. n. a. t. systems
Answer: A
Explanation:
Explanation/Reference: https://developer.amazon.com/en-US/docs/alexa/custom-skills/choose-the-invocation-name-for-a- custom-skill.html
NEW QUESTION # 23
Actions on a Lightning Page allow you to do which of the following?
- A. Clone records, add users, and assign permissions.
- B. Send email, send outbound messages, and launch a flow.
- C. Send email, create a task, and create or update records.
- D. Send email and delete or clone records.
Answer: C
NEW QUESTION # 24
When do you refresh a Sandbox?
- A. Option 4
- B. After a major update
- C. Before UAT
- D. When a Production user is added
Answer: C
NEW QUESTION # 25
An Alexa Skill Builder wants to create a skill that asks the user two yes/no questions:
Alexa: Do you like cats?
Alexa: Do you like dogs?
When the username answers "yes", how should the Builder code the handler to know which question the answer refers to?
- A. Within the AMAZON.YesIntenthandler, define a slot to store and retrieve the previously asked question.
- B. Within the AMAZON.YesIntenthandler, prompt the user to repeat the name of the animal that they like.
- C. Using session attributes, store the previous question as the context for use in the AMAZON.YesIntent handler.
- D. Access Amazon CloudWatch Logs and retrieve the previous question topic from the recent log messages.
Answer: A
Explanation:
Explanation/Reference: https://developer.amazon.com/en-US/docs/alexa/custom-skills/standard-built-in-intents.html
NEW QUESTION # 26
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. Chatter Publisher
- B. Journey Builder
- C. Flow
- D. Path
Answer: D
NEW QUESTION # 27
Which statement about record types is true? (Choose two.)
- A. Record types can be used to define picklist values available for a given field.
- B. Record types can only be assigned to one profile at a time.
- C. Users cannot view records assigned to a record type their profile does not have access to.
- D. The ability to create records of a specific record type is determined by the profile.
Answer: A,D
NEW QUESTION # 28
Universal Containers would like to embed a chart of all related Opportunities, by stage, on the Account detail page. Which type of report should the App Builder create to add to the Account page layout?
- A. A tabular report on the Account object.
- B. A tabular report on the Opportunity object.
- C. A summary report on the Opportunity object.
- D. A summary report on the Account object.
Answer: C
Explanation:
A summary report on the opportunity object should be created to add to the account page layout. A summary report groups rows of data by common values and allows users to create charts based on aggregate values. A summary report on the opportunity object can group opportunities by stage and display a chart of all related opportunities on the account detail page.
NEW QUESTION # 29
What is a true statement when deleting a dashboard?
- A. Deleting a dashboard also deletes the components within it. It does not delete the custom reports used by the components.
- B. Deleting a dashboard requires a user to first edit the components to remove the underlying reports
- C. Deleting a dashboard does not move the dashboard to the recycle bin and therefore the dashboard cannot be recovered.
- D. Deleting a dashboard also deletes the components within it, as well as the custom reports used by the components
Answer: A
NEW QUESTION # 30
Universal Containers wants its Field Sales team to only see the accounts that they own. Separate North American and European marketing teams should only see accounts in their respective regions. The Inside Sales Team needs to see all accounts in Salesforce.
How should an app builder accomplish this?
- A. Set the Organization-Wide Default to Public for accounts. Create criteria-based sharing rules for each Marketing Team, and create an Inside Sales Team permission set with the "View All" setting for accounts.
- B. Set the Organization-Wide Default to Private for accounts. Create permission sets for each Marketing Team, and create an Inside Sales Team profile with the "View All" setting for accounts.
- C. Set the Organization-Wide Default to Private for accounts. Create criteria-based sharing rules for each Marketing Team, and create an Inside Sales Team profile with the "View All" setting for accounts.
- D. Set the Organization-Wide Default to Public for accounts. Create profiles for each Marketing Team, and create an Inside Sales Team role that is at the top of the Role Hierarchy.
Answer: A
NEW QUESTION # 31
What should be done to provide managers access to records of which they are not the owner in a private sharing model?
- A. Create a Manager Permission set and select the "View All Data" option
- B. Define a Role Hierarchy and use the Grant Access Using Hierarchies option
- C. Create a Manager profile and select the "View My Teams Data" option.
- D. Set the Manger field for each User Record on the Manager's team.
Answer: A
NEW QUESTION # 32
......
Tested Material Used To Platform-App-Builder Test Engine: https://lead2pass.real4prep.com/Platform-App-Builder-exam.html