Last Updated On : 20-May-2026


Salesforce Certified Platform User Experience Designer - Plat-UX-101 Practice Test

Prepare with our free Salesforce Certified Platform User Experience Designer - Plat-UX-101 sample questions and pass with confidence. Our Salesforce-Platform-User-Experience-Designer practice test is designed to help you succeed on exam day.

198 Questions
Salesforce 2026

A UX Designer is evaluating whether to perform a moderated or unmoderated usability study on their prototype solution to gain user feedback. Which reason would lead the designer to choose a moderated study?

A. Follow-up questions can be asked to obtain further information about the issues participants may encounter.

B. Sessions can be completed at any time and anywhere.

C. It is less expensive and time-consuming to conduct.

A.   Follow-up questions can be asked to obtain further information about the issues participants may encounter.

Explanation:

✅ Correct Option: A
Follow-up questions can be asked to obtain further information about the issues participants may encounter.
A moderated study allows a facilitator to interact directly with participants, guiding them and asking clarifying or follow-up questions. This provides richer insights into user behavior, thought processes, and usability issues. Designers can adapt the session in real time based on the participant’s feedback, making it ideal when detailed qualitative data is needed.

❌ Incorrect Option: B
Sessions can be completed at any time and anywhere.
This describes unmoderated usability studies, where participants complete tasks independently without a facilitator. They offer flexibility and scalability but lack opportunities for immediate clarification. Since participants work alone, researchers miss out on probing deeper into issues or asking contextual questions. Thus, while convenient, this approach does not serve the purpose of real-time interaction like a moderated study does.

❌ Incorrect Option: C
It is less expensive and time-consuming to conduct.
This is also a feature of unmoderated studies. Because they do not require a live facilitator, they save time, scheduling effort, and cost. Multiple participants can complete sessions in parallel, speeding up the data collection process. However, this efficiency comes at the expense of depth, as researchers cannot gather detailed qualitative insights compared to moderated sessions.

📝 Summary
Moderated usability studies are best when a designer needs detailed qualitative insights and the flexibility to ask follow-up questions during the session. While unmoderated studies are cheaper, quicker, and more scalable, they cannot capture the same depth of user feedback. In this scenario, the key reason to choose moderated testing is the opportunity for richer interaction and contextual understanding of participant behavior.

📘 Reference
Salesforce UX Designer Certification Guide

Cloud Kicks is incorporating Relationship Design principles into its business model and customer offerings wherever possible. Which principle would represent their company strategy?

A. Reframing products in terms of outputs over outcomes

B. Prioritizing engagement over number of impressions

C. Highlighting product benefits over uncovering customer needs

B.   Prioritizing engagement over number of impressions

Explanation

Relationship Design focuses on building ongoing, trust-based connections by prioritizing meaningful customer interactions and value over transactional metrics. The strategy centers on the quality and depth of the relationship, not just superficial exposure.

✅ Correct Option: B
Prioritizing engagement over impressions aligns directly with Relationship Design. It shifts the focus from broad reach (impressions) to meaningful, two-way interactions (engagement). This principle fosters deeper relationships by valuing customer dialogue and participation over mere visibility.

❌ Incorrect Option: A
This inverts a core Relationship Design tenet. The principle is to reframe products in terms of outcomes over outputs. Customers value the end benefit (the outcome) more than the product's features (the output). Prioritizing outputs is a transactional, not relationship-based, approach.

❌ Incorrect Option: C
This contradicts the foundational principle of human-centered design within Relationship Design. The strategy requires first uncovering deep customer needs and pain points. Highlighting product benefits prematurely is a sales-centric tactic that doesn't build genuine, empathetic relationships.

📝 Summary
This question tests understanding of the customer-centric, qualitative focus of Relationship Design. The strategy values meaningful interaction (engagement) over quantitative reach (impressions). It is opposed to purely transactional approaches focused on outputs or one-sided product promotion.

🔖 Reference
Salesforce: "What is Relationship Design?" outlines its principles, emphasizing building trusted, ongoing connections by prioritizing customer engagement, outcomes, and needs.

Cloud Kicks is considering whether it should implement the Standard Salesforce Navigation or use the Console for its Sales team. What is one requirement that could lead to recommending the Console?

A. Need for viewing multiple list views at the same time

B. Ability to toggle between multiple records

C. Work that is mostly in the field

B.   Ability to toggle between multiple records

Explanation

The Salesforce Console is designed for users who need to handle multiple records and tasks simultaneously without losing context. It provides a tab-based interface that allows users to switch between records, subrecords, and related lists efficiently. For a sales team managing several opportunities or cases at once, the Console improves productivity and reduces navigation friction compared to standard navigation.

B. Ability to toggle between multiple records ✅
The Console excels when users need to switch between multiple records quickly. Tabs and subtabs let sales reps or support agents maintain context, track progress, and update records without repeatedly searching or navigating away, making this requirement a key reason to recommend the Console.

A. Need for viewing multiple list views at the same time ❌
While the Console can display related lists within a record, viewing multiple independent list views simultaneously is not its primary function. This requirement alone would not justify switching from standard navigation.

C. Work that is mostly in the field ❌
Fieldwork considerations, such as mobile access, do not inherently require the Console. Salesforce mobile and standard navigation can meet field needs without the complexity of a tabbed Console layout.

Summary
The Salesforce Console is ideal for users who must manage multiple records simultaneously. Ability to toggle between records efficiently is the strongest justification, while viewing multiple list views or field-based work does not inherently require the Console.

Reference
Salesforce Help – Lightning Experience Console Overview

A UX Designer needs to restyle a Lightning Web Component (LWC) to meet brand guidelines. Which key consideration about that LWC should the UX designer be aware of?

A. Only the main Lightning Modal component can be styled using styling hooks.

B. Only the body, footer, and header helper components can be styled using styling hooks.

C. The model cannot be styled using styling hooks

B.   Only the body, footer, and header helper components can be styled using styling hooks.

Explanation

When restyling a Lightning Web Component (LWC) like the lightning-modal to align with corporate brand guidelines, UX designers must understand Salesforce's styling limitations. LWCs use Shadow DOM for encapsulation, so direct CSS overrides are restricted. Instead, Salesforce provides "styling hooks" — special CSS custom properties (e.g., --lwc-colorBackgroundModal) that allow targeted, supported customization of specific parts without breaking encapsulation or future upgrades.

Correct Option

✅ B. Only the body, footer, and header helper components can be styled using styling hooks
This is the key consideration. In lightning-modal, styling hooks target only the header (modalHeader), body (modalBody), and footer (modalFooter) sub-components. You can customize backgrounds, borders, paddings, fonts, etc., via variables like --lwc-modalHeaderColor. This ensures brand-consistent styling while respecting SLDS boundaries — other parts (like the overlay or close button) remain unstyleable via hooks to maintain consistency and accessibility.

Incorrect Options

❌ A. Only the main Lightning Modal component can be styled using styling hooks
This is misleading. The main tag itself doesn't expose styling hooks for direct customization — hooks are reserved for its internal helper components (header, body, footer). Trying to style the root would fail due to Shadow DOM, leading to inconsistent or broken brand application across Salesforce apps.

❌ C. The model cannot be styled using styling hooks
This is too absolute and incorrect (likely a typo for "modal"). The modal can be styled using hooks, but only on specific sub-parts. Claiming it "cannot be styled" ignores Salesforce's built-in support for header/body/footer customization, which is essential for brand alignment without custom LWCs or risky global CSS.

Summary
The key awareness for restyling a lightning-modal LWC is B – Only the body, footer, and header helper components can be styled using styling hooks. This limitation ensures controlled, upgrade-safe customizations per brand guidelines. Focus on hooks for allowed areas to avoid conflicts with SLDS defaults. Always check release notes for new hooks in future updates.

Reference
Salesforce Help – Lightning Web Component Modal
(Details styling hooks limited to modalHeader, modalBody, modalFooter for branding.)

Cloud Kicks wants its users to know when a new feature is enabled or available with a short video explaining the new feature. What should be recommended?

A. Lightning Path component

B. Docked prompt using In-App Guidance

C. Custom video component

D. Utility bar with embedded video

B.   Docked prompt using In-App Guidance

Explanation:

To effectively communicate new feature availability, a guided approach is needed. In-App Guidance offers a prompt that can include video content, making it ideal for showcasing new features and enhancing user engagement through interactive guidance.

B. ✅ Docked prompt using In-App Guidance:
A docked prompt using In-App Guidance can include videos and is designed for announcing new features, making it a suitable choice for Cloud Kicks' requirement, enhancing user adoption and engagement effectively with contextual support.

A. ❌ Lightning Path component:
A Lightning Path component guides users through processes or workflows but isn't specifically designed for showcasing new features with videos, making it less suitable for this requirement of Cloud Kicks needing immediate attention to new features.

C. ❌ Custom video component:
A custom video component can display the video but lacks the guided, in-app context that In-App Guidance offers for new feature announcements, requiring more customization and less direct engagement.

D. ❌ Utility bar with embedded video:
A utility bar is typically used for actions or shortcuts, not for announcing new features with videos, making it less relevant for this specific need of highlighting new functionality.

Summary:
Cloud Kicks needs to announce new features with videos. In-App Guidance with a docked prompt is ideal. It's guided and can include videos, enhancing user engagement.

Reference:
Salesforce In-App Guidance documentation

Salesforce-Platform-User-Experience-Designer Exam Questions - Home Previous
Page 3 out of 40 Pages