
[2026] Free Plat-Admn-202 Exam Dumps to Pass Exam Easily
Plat-Admn-202 Exam Dumps, Plat-Admn-202 Practice Test Questions
Salesforce Plat-Admn-202 Exam Syllabus Topics:
| Topic | Details |
|---|---|
| Topic 1 |
|
| Topic 2 |
|
| Topic 3 |
|
| Topic 4 |
|
| Topic 5 |
|
NEW QUESTION # 97
Cloud Kicks wants to efficiently Increase the company's adoption of Salesforce while simultaneously moving away from their reliance on spreadsheets. An app builder is given a spreadsheet everyone is sharing that needs to be added to Salesforce. The object with fields needs to be created and the data inserted simultaneously.
Which tool should be used?
- A. Lightning Object Creator
- B. Data Loader
- C. Schema Builder
- D. Import Wizard
Answer: A
Explanation:
Lightning Object Creator is a tool that allows app builders to create an object with fields and import data from a spreadsheet simultaneously. Import Wizard and Data Loader are tools for importing data into existing objects, not creating new objects. Schema Builder is a tool for creating and modifying objects and fields, but not importing data.
NEW QUESTION # 98
An app builder at DreamHouse Realty created a custom object which has Fields containing data from two different objects via related lookups. What is needed to create "with" or "without" reports on the new custom Object?
- A. Report Filters
- B. Report Bucket Field
- C. Custom Report Type
- D. Row-Level Formula
Answer: C
Explanation:
The correct answer is D. Custom Report Type.
A custom report type defines which records and fields are available in a report based on relationships between a primary object and related objects. Salesforce also references custom WITH or WITHOUT report types for reporting on related records.
Because DreamHouse Realty needs "with" or "without" reports involving a custom object and related lookup data, the app builder must create a Custom Report Type and define the object relationships.
Why others are incorrect:
A . Report Filters filter report results but do not define the reportable object relationship.
B . Row-Level Formula calculates values per row; it does not create with/without relationship reporting.
C . Report Bucket Field groups report values; it does not define related-object report structure.
NEW QUESTION # 99
Cloud Kicks wants to make sure that users without the Marketing role are unable to update the Contact Retail Opt In picklist field to Yes.
What validation rule would an app builder use to prevent other users from making this update?
- A. AND( $UserRole.Name != 'Marketing',ISCHANGED(Retail_Opt_In__c), ISPICKVAL(Retail_0pt_In_c,"Yes") )
- B. AND( $UserRole.Name = 'Marketing', Retail_Opt_In__c= "Yes" )
- C. AND( $UserRole.Name = 'Marketing', ISPICKVAL(Retail_Opt_In_c,"Yes") )
- D. AND( $UserRole.Name != 'Marketing', Retail_Opt_In_c = "Yes" )
Answer: A
Explanation:
The validation rule should check if the user role is not Marketing, and if the Retail Opt In field has been changed to Yes. The ISCHANGED function returns true if the field value has been changed, and the ISPICKVAL function returns true if the field value matches a specified picklist value.
NEW QUESTION # 100
Universal Containers (UC) has a custom Invoice object and a custom Invoice Line Item Object. The Invoice Line Item object has a lookup relationship to the Invoice. UC would like to Convert the lookup relationship to a master-detail relationship but is unable to do so. Which two reasons could be preventing this relationship conversion? Choose 2 answers
- A. Custom objects are unable to be on the detail side of a master-detail Relationship.
- B. There is a roll-up summary field on the Invoice object.
- C. There are already two master-detail relationships on the Invoice Line Item.
- D. Invoice Line Item records exist without having the Invoice lookup field populated
Answer: C,D
Explanation:
The correct answers are A. There are already two master-detail relationships on the Invoice Line Item and C. Invoice Line Item records exist without having the Invoice lookup field populated.
Salesforce allows a lookup relationship to be converted to a master-detail relationship only when the lookup field has a value on all existing records. Therefore, if any Invoice_Line_Item__c records do not have the Invoice lookup populated, Salesforce prevents the conversion.
Salesforce also limits each custom object to up to two master-detail relationships. If Invoice Line Item already has two master-detail relationships, it cannot have another master-detail relationship added or converted.
B is incorrect because custom objects can be on the detail side of master-detail relationships. D is incorrect because a roll-up summary field on Invoice is not the reason this lookup-to-master-detail conversion would be blocked.
NEW QUESTION # 101
Cloud Kicks (CK) increased its Salesforce development efforts so That it now has multiple custom development efforts happening in parallel. CK's developers and admins perform the customizations and have Complained that working in one sandbox has led to many problems. They Requested a solution in which they can work in at least 20 different Sandboxes at once, that all start with the same base configuration and Dat What should an app builder use to solve the problem?
- A. Full copy sandboxes
- B. Sandbox cloning
- C. Partial copy sandboxes
- D. Sandbox refreshes
Answer: B
Explanation:
omprehensive and Detailed Explanation with all Platform App Builder documents: = The correct answer is A. Sandbox cloning.
Cloud Kicks needs many parallel sandboxes that start from the same base configuration and data. Sandbox cloning is designed for this because Salesforce copies the source sandbox's data and metadata into a new sandbox. Salesforce documentation states that cloning a sandbox copies its data and metadata into the new sandbox.
Partial copy and full copy are sandbox types, not the best mechanism for repeatedly creating many sandboxes from the same prepared baseline. Sandbox refreshes update existing sandboxes; they do not create at least 20 parallel environments from the same baseline.
NEW QUESTION # 102
Cloud Kicks (CK) wants to simultaneously delete a Supplier's record and all Supplier ltem__c records if a partnership ends with a supplier.
What solution could an app builder use to meet the requirement?
- A. Master-detail
- B. Hierarchical
- C. Many-to-many
- D. Indirect lookup
Answer: A
Explanation:
The solution that an app builder should use to meet this requirement is master-detail relationship. A master-detail relationship is a type of relationship that creates a parent-child relationship between two objects, where the child records inherit the sharing and security settings of their parent record. The app builder can create a master-detail relationship between Supplier__c and SupplierItem__c objects, where Supplier__c is the parent object and SupplierItem__c is the child object. This way, when a Supplier__c record is deleted, all related SupplierItem__c records are also deleted automatically. Option A is incorrect because many-to-many relationship is not suitable for this requirement, as many-to-many relationship allows two objects to be linked in both directions through a junction object, but does not support cascading delete. Option B is incorrect because indirect lookup relationship is not suitable for this requirement, as indirect lookup relationship allows an external object to link with another object using an external ID field, but does not support cascading delete. Option C is incorrect because hierarchical relationship is not suitable for this requirement, as hierarchical relationship allows users to use a lookup field that links an object with itself, but does not support cascading delete.
NEW QUESTION # 103
An app builder needs to change the data type of some custom fields.
Which two limitations should the app builder be aware of when changing the data type of a custom field?
Choose 2 answers
- A. It is not possible to change the data type of field referenced by Apex code,
- B. It is not possible to change the data type of a formula field to any data type.
- C. It is not possible to change the data type of a Text Area (Long) field to Text.
- D. It is not possible to change the data type of a field used as an External ID from number to text.
Answer: B,C
Explanation:
Changing the data type of custom fields in Salesforce has specific limitations that need to be considered to ensure system integrity and prevent errors:
A . It is not possible to change the data type of a formula field to any data type. Formula fields are calculated based on other field values and cannot be converted into a storage data type because they do not store data themselves.
D . It is not possible to change the data type of a Text Area (Long) field to Text. Text Area (Long) fields support up to 131,072 characters, which far exceeds the 255 character limit of standard Text fields. Converting such a field to a smaller capacity field would potentially lead to data truncation or loss.
For official guidance on data type changes, refer to Salesforce's Custom Field Considerations.
NEW QUESTION # 104
An app builder wants to create a custom object and 10 fields.
What should they use to create the object, fields, and relationships quickly from one place?
- A. Schema Builder
- B. Lightning Object Creator
- C. Manage Field Permissions
- D. Developer Console
Answer: A
Explanation:
To create a custom object along with multiple fields and relationships efficiently from a single interface, the Schema Builder is the ideal tool:
A . Schema Builder. This graphical tool provides a drag-and-drop interface for creating and modifying objects and fields in Salesforce, allowing for a visual layout of database schema.
Steps to use Schema Builder:
Go to Setup → Schema Builder.
Drag the 'Object' element into the schema area to create a new custom object.
Define the object's properties (e.g., label, API name).
Drag field elements like Text, Number, or Lookup into the object to create fields.
Configure each field's properties according to your requirements.
Connect objects via lookup or master-detail relationships by dragging the relationship fields between them.
Save the layout to create all elements in Salesforce.
For more information, review Salesforce's Schema Builder documentation.
NEW QUESTION # 105
The marketing team at UVC has a list of 400 leads it wants to upload to Salesforce. The team need to avoid creating duplicate records. Which two actions should be taken to meet this requirement? Choose 2 answers
- A. Upload the lead list using the import wizard and select a Matching type to prevent duplicate lead creation.
- B. Use Data Loader's update function to import lead and match to existing records based on e-mail address.
- C. Utilize a Lead Matching Rule and corresponding Duplicate Rule to block newly created duplicate leads.
- D. Enable Duplicate Matching in the Data Management section in Setup and activate the Lead-to_Lead scenario.
Answer: A,C
Explanation:
The best actions to take to avoid creating duplicate leads when uploading a list of 400 leads are to utilize a Lead Matching Rule and corresponding Duplicate Rule to block newly created duplicate leads, and to upload the lead list using the import wizard and select a Matching type to prevent duplicate lead creation. The Lead Matching Rule defines the criteria for identifying duplicate leads, and the Duplicate Rule defines the actions to take when a duplicate is detected. The import wizard allows users to choose a Matching type based on the Lead Matching Rule and block or allow duplicates. Using Data Loader's update function or enabling Duplicate Matching in the Data Management section will not prevent duplicate lead creation.
NEW QUESTION # 106
Universal Containers wants to give sales managers the ability to quickly provide sign off on an Opportunity via the Opportunity record page when a sales rep has discounted a deal by 20% to 30%.
Which two features should be used for this requirement?
Choose 2 answers
- A. Dynamic Actions
- B. Schema Builder
- C. Validation Rule
- D. Approval Process
Answer: A,D
Explanation:
To facilitate quick managerial sign-off on discounted opportunities:
B . Dynamic Actions: Allows the display of specific actions on the Opportunity record page based on certain conditions, like the discount percentage.
D . Approval Process: Configures a formal sign-off process for records meeting specific criteria, such as discount ranges between 20% to 30%.
Steps to set up:
Configure an approval process for opportunities where the discount is between 20% and 30%.
Use Dynamic Actions to conditionally show the approval action directly on the Opportunity record page based on the discount percentage.
This setup allows sales managers to efficiently review and approve discounted deals directly from the Opportunity record page.
For guidance on setting up approval processes and dynamic actions, refer to Dynamic Actions in Salesforce.
NEW QUESTION # 107
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 should be used to accomplish this?
- A. Custom URL formula field
- B. Custom button
- C. Custom action
- D. Custom quick access link
Answer: C
Explanation:
The correct answer is B. Custom action.
The user wants to edit a record's Status and enter a custom Due Date quickly from the record feed in the Salesforce mobile app. A custom action, specifically an object-specific quick action, can expose selected fields for fast updates on mobile. Salesforce documentation states that object-specific actions let users quickly create or update records in the context of a specific record, and the Salesforce mobile action bar displays actions in mobile places such as feeds and record pages.
Custom button and URL formula field are not the best mobile feed-editing tools. Custom quick access link is not the correct Salesforce feature for this requirement.
NEW QUESTION # 108
Cloud Kicks (CK) wants to quickly insert a list of over 1 million net new Accounts. The template based on CK's data model was used to populate The list. Which tool should be used?
- A. Data Loader
- B. Schema Builder
- C. Lightning Object Creator
- D. Import Wizard
Answer: A
Explanation:
The correct tool is Data Loader.
Cloud Kicks needs to insert over 1 million net new Account records. Salesforce Data Loader is the correct tool for large-volume imports because it supports bulk insert, update, delete, and export operations. Salesforce's Data Loader documentation describes it as a client application for bulk data import and export, including inserting Salesforce records. Salesforce also distinguishes it from the Data Import Wizard, which is limited to smaller imports.
Why the other options are wrong:
Data Import Wizard is not suitable for over 1 million records because it is intended for much smaller imports. Schema Builder is for viewing and creating data model components, not loading a million records. Lightning Object Creator creates objects from spreadsheets, not mass-inserting large Account datasets into an existing model.
NEW QUESTION # 109
Universal Containers has a customer base where many customers have the same or similar company names.
Which functionality should be configured to improve an end user`s search experience?
Choose 2 answers
- A. Update the account search layout's view filter settings.
- B. Update the account search layouts accounts tab columns displayed.
- C. Update the account search filter fields.
- D. Update the account search layouts search results columns displayed.
Answer: C,D
Explanation:
Updating the account search layouts search results columns displayed and updating the account search filter fields can improve an end user's search experience by showing more relevant information and allowing more refined filtering. The view filter settings and the accounts tab columns displayed are not related to the search functionality
NEW QUESTION # 110
Universal Containers uses a private sharing model on Accounts. User A and user B both own Accounts of their own and have both been sent a new account record in an email owned by user C to take a look at. User A is able to open and view the record but user B receives an insufficient privileges error. User A and user B have the same role in the role hierarchy as user.
What are the three reasons user A has access but user B is unable to access the record? Choose 3 answers
- A. User A was granted an additional permission set.
- B. User C has manually shared the record with user A.
- C. User A is on the same account team as user C.
- D. User A and user B have different profiles.
- E. User A is in a public group that has access via a sharing rule.
Answer: B,C,E
Explanation:
The three reasons user A has access but user B is unable to access the record are:
User A is on the same account team as user C. Account teams are groups of users who work together on an account. Users who are on an account team can have access to the account and related records owned by other team members.
User C has manually shared the record with user A. Manual sharing is a way of granting access to individual users or groups by the record owner or someone above them in the role hierarchy.
User A is in a public group that has access via a sharing rule. Public groups are groups of users who can be used to share data or assign permissions. Sharing rules are automatic rules that grant access to groups of users based on certain criteria. Option B and D are not reasons for user A's access.
NEW QUESTION # 111
At Cloud Kicks when an opportunity close date is delayed by more than 60 days, the Manager and the VP of Sales want to review the change. Which two solutions will meet the requirement? Choose 2 answers
- A. Build a validation rule that does not allow a user to save the opportunity recor
- B. Build an approval process that requires unanimous approval from the manager and VP of Sales.
- C. Create a formula field that calculates if the close date is less than 60 days and then send An email alert.
- D. Create a flow that submits the record for an approval process.
Answer: B,D
Explanation:
The correct answers are A. Build an approval process that requires unanimous approval from the manager and VP of Sales and D. Create a flow that submits the record for an approval process.
The requirement is not just to notify users or block the change. The manager and VP of Sales must review the close-date delay. Salesforce approval processes are designed to automate how records are approved, including approval steps, approvers, and approval/rejection actions.
A is correct because an approval process can route the Opportunity to the manager and VP of Sales for approval. Requiring unanimous approval ensures both reviewers must approve the delayed close date.
D is correct because a record-triggered flow can detect when the Opportunity Close Date changes and is delayed by more than 60 days, then use the Submit for Approval action. Salesforce Flow supports prior-value/change logic in record-triggered flows, and Salesforce documents the Flow Submit for Approval action.
Why others are incorrect:
B is incorrect because a validation rule blocks saving the record. It does not allow manager/VP review.
C is incorrect because a formula field and email alert do not create an approval review process, and the stated logic does not satisfy the approval requirement.
NEW QUESTION # 112
What is one limitation of using schema builder when creating a Field?
- A. Cannot create formula fields.
- B. Cannot create lookup relationships.
- C. Cannot see existing relationships between objects.
- D. Cannot add fields to page layouts.
Answer: D
Explanation:
The correct answer is C. Salesforce Schema Builder can create fields, including relationship fields, formula fields, and normal fields, and it also helps visualize existing object relationships. However, a field created in Schema Builder is not automatically added to the object's page layout. Salesforce documentation states that after using Schema Builder, the field must be added through the Page Layout Editor.
Why others are incorrect:
A is incorrect because Schema Builder can create formula fields.
B is incorrect because Schema Builder can create relationship fields.
D is incorrect because Schema Builder is specifically used to view and understand object relationships.
NEW QUESTION # 113
The Director of Customer Service wants to receive a notification when a case stays in the New status for more than four business hours.
Which two automation processes should be used to accomplish this?
- A. Scheduled Apex
- B. Validation Rule
- C. Flow Builder
- D. Escalation Rules
Answer: C,D
Explanation:
The requirement is time-based (Case in New status > 4 business hours) and requires a notification.
Escalation Rules can monitor case age and trigger escalation or notifications after a specified period.
Flow Builder (Scheduled Path or Scheduled Trigger Flow) can be used to evaluate business hours and send alerts.
Why B (Escalation Rules) is correct:Exact Extract:"Escalation rules automatically escalate cases when they meet certain criteria, such as the age of the case, and can notify users or change ownership." - Salesforce Help | Case Escalation RulesEscalation rules are ideal for service teams and time-based escalation scenarios.
Why B (Escalation Rules) is correct:Exact Extract:"Escalation rules automatically escalate cases when they meet certain criteria, such as the age of the case, and can notify users or change ownership." - Salesforce Help | Case Escalation RulesEscalation rules are ideal for service teams and time-based escalation scenarios.
Why D (Flow Builder) is correct:Exact Extract:"Use scheduled paths in record-triggered flows to perform actions after a certain amount of time has passed since the record was created or updated." - Salesforce Help | Scheduled Paths in Flow BuilderA Scheduled Path in a record-triggered flow can evaluate the Case's age in hours and send an email alert if the Status remains "New." Why D (Flow Builder) is correct:Exact Extract:"Use scheduled paths in record-triggered flows to perform actions after a certain amount of time has passed since the record was created or updated." - Salesforce Help | Scheduled Paths in Flow BuilderA Scheduled Path in a record-triggered flow can evaluate the Case's age in hours and send an email alert if the Status remains "New." Why not A:Validation Rules prevent saving invalid data but cannot evaluate elapsed time.
Why not C:Scheduled Apex would work technically but is a code-based solution; declarative automation (Flow or Escalation) is preferred for App Builder certification.
Reference:
Salesforce Help | Case Escalation Rules
Salesforce Help | Scheduled Paths in Flow Builder
Salesforce Platform App Builder Exam Guide | Business Logic and Process Automation
NEW QUESTION # 114
Universal Containers (UC) maintains information for over 2 million assets in an external system. UC needs to access these assets in real-time data in Salesforce and is nearing the data storage limits.
What feature could an app builder recommend UC use?
- A. Data Loader
- B. Salesforce to Salesforce
- C. Data Export Wizard
- D. Salesforce Connect
Answer: D
Explanation:
The app builder should recommend UC use Salesforce Connect to access the assets in real-time data in Salesforce. Salesforce Connect is a feature that allows users to view, search, and modify data that is stored outside Salesforce, such as in an external system. Salesforce Connect uses external objects and external data sources to integrate data from various sources without copying or synchronizing it2. This can help UC access their assets in real-time without consuming data storage limits in Salesforce. Option A, C, and D are not features that can meet this requirement.
NEW QUESTION # 115
Universal Containers wants to track installation information once a Container has been purchased on a custom object. Sales reps should have visibility of All the installations associated with their opportunities. Which kind of relationship should this new object have to Opportunity?
- A. Lookup
- B. Many to Many
- C. Hierarchical
- D. Master-Detail
Answer: D
Explanation:
Salesforce requires installation records to be directly associated with Opportunities, and sales reps need visibility of all installations tied to their Opportunities. A Master-Detail relationship is the correct solution because:
The Installation object (detail) inherits sharing and security from the Opportunity (master), ensuring sales reps see only their related installations.
Enables roll-up summaries on Opportunity if needed.
Salesforce documentation confirms that Master-Detail relationships provide parent-controlled ownership and access, making them ideal for enforcing related record visibility. (Salesforce Help) B . Hierarchical is only available for User object.
C . Many-to-Many requires a junction object; not needed here.
D . Lookup allows optional, independent access; would not automatically enforce visibility.
NEW QUESTION # 116
DreamHouse Realty (DR) employees started using company-owned airplanes for work travel after Ursa Major Solar was acquired. DR executives want to automate the submission travel request forms to enforce the Internal policy.
How should an app builder automate travel requests based on these criteria?
- A. Process Builder
- B. Workflow rule
- C. Apex
- D. Approval process
Answer: D
Explanation:
Approval process is the best way to automate travel requests based on internal policy. Approval process can define the steps, criteria, and actions for approving records. The app builder can create an approval process for travel requests that requires approval from managers or executives before they are submitted. Workflow rule, Process Builder, and Apex are not suitable for this requirement.
NEW QUESTION # 117
Ursa Major Solar's sales team has been struggling to enter data on mobile since rollout; the team dislikes scrolling through all of the fields to input only the necessary data.
How could the app builder solve this with minimal impact to desktop users?
- A. Reorder the fields to make sense for the reps when in the field.
- B. Filter components by device using Form Factor.
- C. Update the training documentation with better screenshots.
- D. Deselect the phone radio button on the Lightning record page assignment.
Answer: B
Explanation:
The best way to solve this problem is to filter components by device using Form Factor. Form Factor is an attribute that can be applied to components on a Lightning record page to control their visibility based on the device type, such as desktop, phone, or tablet. By using Form Factor, the app builder can hide some components that are not relevant for mobile users, such as charts or reports, and show only the components that are necessary for data entry, such as fields or actions. This way, the mobile users do not have to scroll through all the components and can enter data more easily. Reordering the fields may not solve the problem completely, as there may still be too many components on the page for mobile users. Updating the training documentation may not help either, as it does not address the root cause of the problem, which is the layout of the page. Deselecting the phone radio button on the Lightning record page assignment may not be desirable, as it will prevent mobile users from accessing the record page at all, which may affect their productivity and functionality.
NEW QUESTION # 118
Which two report formats can be used as a source report to configure a reporting snapshot?
Choose 2 answers
- A. Joined format
- B. Summary format
- C. Tabular format
- D. Matrix format
Answer: B,D
Explanation:
For reporting snapshots, the source report must be capable of grouping data, which is necessary for summarizing information at specific intervals. The acceptable formats for a source report in reporting snapshots are:
Summary format (B). This format groups rows of data by one or more criteria and can perform calculations such as sum, average, etc., on another column at each group level.
Matrix format (D). Similar to the summary format but arranges data in a grid format, allowing summarization by both rows and columns.
Tabular (A) and joined (C) formats are not suitable for reporting snapshots. Tabular reports do not include grouped or summarized data, and joined reports involve combining multiple report types, which are not compatible with how reporting snapshots need to structure data.
Reference for more information on reporting snapshots and report formats:
Reporting Snapshots: https://help.salesforce.com/articleView?id=reports_snapshots.htm&type=5 Report Formats: https://help.salesforce.com/articleView?id=reports_understanding_formats.htm&type=5
NEW QUESTION # 119
How should an app builder configure access to a contact's Twitter profile for Salesforce mobile app users?
- A. Add a formula field to the Contact page layout.
- B. Add an AppExchange Lightning Component to the mobile app.
- C. Add the Twitter component to mobile view Lightning pages.
- D. Add a Twitter Quick Action to the mobile navigation.
Answer: C
Explanation:
The Twitter component is a standard Lightning component that can be added to mobile view Lightning pages using the Lightning App Builder. It displays a contact's Twitter profile and recent tweets
NEW QUESTION # 120
Universal Containers wants to give sales managers the ability to quickly provide sign off On an Opportunity via the Opportunity record page when a sales rep has discounted a deal by 20% To 30%. Which two features should be used for this requirement? Choose 2 answers
- A. Schema Builde
- B. Dynamic Actions
- C. Validation Rule
- D. Approval Process
Answer: B,D
Explanation:
The correct answers are A. Dynamic Actions and C. Approval Process.
An Approval Process is required because sales managers must provide formal sign off when an Opportunity discount meets the defined criteria. Salesforce approval processes define the criteria a record must meet, the steps required for approval, and who must approve it.
Dynamic Actions are also needed because Universal Containers wants the sign-off action available quickly from the Opportunity record page. Dynamic Actions let app builders control which actions appear on Lightning record pages based on conditions.
Why others are incorrect:
Schema Builder is for data model design, not approval/sign-off UI behavior.
Validation Rule can block invalid data, but it does not provide manager approval or sign-off.
NEW QUESTION # 121
Cloud Kicks Is redefining its entire business process to convert the Manager Notes field from a long text area files. The goal is to encourage managers to be more concise In their comments and stay at 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 an error message to pop up.
Answer: C
Explanation:
Preexisting information will remain even if it was over 255 characters if the app builder tries to convert a preexisting long text area field to text area. However, users will not be able to edit or save records with more than 255 characters in that field until they reduce the number of characters. Preexisting information will not truncate, be lost, or cause an error message.
NEW QUESTION # 122
......
Plat-Admn-202 Exam Dumps, Plat-Admn-202 Practice Test Questions: https://itcertspass.itcertmagic.com/Salesforce/real-Plat-Admn-202-exam-prep-dumps.html