Total 198 Questions
Last Updated On : 20-Feb-2026
A UX Designer wants to conduct customer interviews as part of discovery research. Which best practice should be followed while conducting these interviews?
A. Ignore vague or general answers.
B. Engage in a friendly and informal way.
C. Analyze findings in the moment.
Explanation
Customer interviews are a cornerstone of discovery research in UX design. They help reveal user motivations, frustrations, and behaviors in a natural way. The goal is to create a comfortable environment for honest feedback while staying neutral and focused on listening, ensuring the data collected is reliable and actionable for Salesforce UX improvements.
✅ Correct Option: B. Engage in a friendly and informal way.
A warm, conversational tone makes users feel comfortable and valued. This informal approach encourages participants to open up, share personal stories, and provide richer details about their experiences. It builds rapport quickly, leading to more genuine insights that truly reflect user needs and pain points.
❌ Incorrect Option: A. Ignore vague or general answers.
Vague answers often signal deeper insights waiting to be uncovered. Best practice is to follow up with open-ended probes like "What do you mean by that?" or "Can you give an example?" Dismissing them risks losing critical context needed to understand user challenges fully.
❌ Incorrect Option: C. Analyze findings in the moment.
Real-time analysis can bias the interview by leading the designer to ask confirming questions only. It divides attention from listening fully to the participant. Proper practice is to stay present, take neutral notes, and analyze patterns after all interviews are complete for objectivity.
Summary
Friendly, informal engagement creates trust and yields deeper user insights.
Always probe vague responses instead of ignoring them to uncover hidden needs.
Postpone analysis until after interviews to maintain neutrality and focus.
These practices ensure high-quality, unbiased discovery research.
Reference:
Trailhead → Innovation Customer Discovery: Empathize with Your Customer
Trailhead → UX Research Basics: Conduct Effective User Interviews
The UX team at Cloud Kicks is examining the user interface of the company's customer-facing portal that runs on Experience Cloud. They want to determine the portal's compliance with recognized standard usability principles. How should this be accomplished?
A. Intuitive Review
B. A Heuristic Evaluation
C. User Testing
Explanation
A Heuristic Evaluation is the professional standard for systematically assessing a user interface against established usability rules. This methodology involves expert reviewers meticulously inspecting the system to identify violations of principles like visibility and consistency. It directly addresses the need to confirm compliance with industry-recognized design standards quickly and efficiently.
Correct Option
✅ B. A Heuristic Evaluation
This formal method requires trained evaluators to compare the design against a robust checklist of best practices, such as the famous Nielsen's Heuristics. Since the goal is determining compliance with recognized standard principles, this structured, expert-driven approach is the most direct and reliable way to check the interface for usability issues.
Incorrect Options
❌ A. Intuitive Review
An "Intuitive Review" is too informal and subjective to guarantee comprehensive compliance with all standard usability principles. It lacks the necessary structured methodology and specific criteria. Relying on casual judgment instead of established heuristics will likely result in missed, critical design flaws that negatively impact the user experience.
❌ C. User Testing
User Testing reveals how real users interact with the system and their success rates, which is crucial for validation. However, its primary focus is not a systematic audit of the interface against a list of abstract design principles. It shows problems, but the Heuristic Evaluation pinpoints the exact principle violations causing them.
📝 Summary
To systematically verify the Experience Cloud portal's adherence to standard usability principles, the Cloud Kicks UX team should conduct a Heuristic Evaluation. This approach employs expert reviewers to check the design against a structured set of industry standards, ensuring comprehensive compliance. It is superior to informal reviews or the user testing method for this specific objective.
🔗 Reference
Salesforce Trailhead: User Experience Designer Certification Prep: Assess Usability
(Heuristic Evaluation is the core method taught in the official certification preparation materials for systematically assessing usability against standards.)
A UX Designer has recently released a feature on experience Cloud and wants to know if the feature was successful and track usability over time. Which research methodology should be used?
A. Qualification
B. Quantitative
C. Qualitative
D. Quantizing
Explanation
Correct Option:
🟢 B. Quantitative
Quantitative research focuses on measurable data such as usage frequency, task completion rates, engagement metrics, and trends over time. For a released Experience Cloud feature, this method helps determine success through analytics and performance indicators. It allows UX designers to objectively track usability improvements, adoption rates, and long-term behavior changes using numerical data.
Incorrect Options:
🔴 A. Qualification
Qualification is not a recognized UX research methodology. While the term may sound similar to qualitative research, it does not represent a valid or structured approach for evaluating usability or feature success. Therefore, it cannot be used to track user behavior or measure outcomes over time.
🔴 C. Qualitative
Qualitative research focuses on understanding user motivations, feelings, and perceptions through interviews or observations. While useful during discovery or early design phases, it is not ideal for tracking feature success over time because it lacks measurable metrics and does not scale well for long-term performance tracking.
🔴 D. Quantizing
Quantizing is not a standard UX research method. Although it sounds related to quantitative analysis, it is not used in UX practice or Salesforce design guidance. As a result, it cannot provide reliable insights into usability or feature performance.
Summary:
To measure success after a feature launch, UX designers need objective and trackable data. Quantitative research provides clear metrics to evaluate usability and adoption over time. Other options are either invalid terms or better suited for exploratory research rather than ongoing measurement.
References:
Salesforce UX Design – Data-Driven Design Decisions
Experience Cloud Analytics Overview
Universal Containers (UC) uses a custom lightning component with an Apex class to display
shipment information (custom object, private OWD). UC sales managers are complaining
about two important points:
● Shipment records that belong to their teams can be seen by other users.
● Shipment amount should be visible only by managers, but sales reps are able to view it.Which two features did the development team miss that is causing the problems?
Choose 2 answers.
A. Use runAs in test class to enforce user permissions and field-level permissions.
B. Use With Sharing keyword in Apex classes to enforce sharing rules evaluation.
C. Use isSharable keyword in Apex classes to assurerecord visibility.
D. Use isAccessible() method in Apex classes to check field accessibility
Explanation
In Salesforce, custom Lightning components often retrieve data via Apex controllers. By default, Apex executes in system mode, bypassing the current user's sharing rules, object permissions, and field-level security. For a private custom object like Shipment, developers must manually enforce record-level sharing and field accessibility in Apex to align with profile settings and OWD, preventing unauthorized data exposure.
✅ Correct Option: B. Use With Sharing keyword in Apex classes to enforce sharing rules evaluation.
The "with sharing" keyword on an Apex class declaration forces queries to respect the organization's sharing model—including private OWD, role hierarchy, sharing rules, and manual shares. Without it, Apex returns all records visible in system context, allowing users to view shipments owned by other teams despite restrictions.
✅ Correct Option: D. Use isAccessible() method in Apex classes to check field accessibility.
Apex does not automatically enforce Field-Level Security (FLS). To protect sensitive fields like Shipment Amount, code must use Schema describe methods (e.g., Shipment__c.Shipment_Amount__c.getDescribe().isAccessible()) before querying or exposing the field. Omitting this check reveals restricted fields to all users via the component.
❌ Incorrect Option: A. Use runAs in test class to enforce user permissions and field-level permissions.
The System.runAs() method is used exclusively in test classes to simulate execution under different user profiles and validate security behavior. It verifies enforcement during testing but has zero impact on production runtime, where actual data visibility issues occur.
❌ Incorrect Option: C. Use isSharable keyword in Apex classes to assure record visibility.
No such "isSharable" keyword exists in Apex. Record-level visibility is managed solely through class declarations like "with sharing," "without sharing," or "inherited sharing"—not by any field-check or fictional keyword.
Summary
Always use "with sharing" in Apex controllers for components accessing private objects to enforce record ownership and sharing.
Explicitly validate field accessibility with isAccessible() to honor FLS and hide sensitive data from lower-level users.
Testing tools like runAs ensure code quality but don't prevent live security leaks.
Proper enforcement aligns custom components with Salesforce's declarative security model for safe data display.
Reference:
Using the with sharing, without sharing, or inherited sharing Keywords
Secure Apex Classes
Which two steps should a UX Designer take to create and deliver responsible andtransparent AI technology? Choose 2 answers
A. Collect as much data from the user as possible for a catered experience.
B. Design AI that is seamless enough so the user does not notice.
C. Document model cards to clarify intended context and use cases.
D. Provide clear explanations of AI predictions or recommendations.
Explanation
To build AI that is both responsible and transparent, designers must ensure users understand how the AI works and its limitations. Documenting a model’s purpose and use cases via model cards provides crucial context. Furthermore, giving clear, user-friendly explanations for outputs builds trust and empowers the user to make informed decisions about the AI's suggestions.
Correct Options
✅ C. Document model cards to clarify intended context and use cases.
Model cards are a critical step in promoting transparency and accountability in AI development. They act as a public-facing datasheet that clarifies a model's purpose, details its training data, identifies potential limitations, and specifies the appropriate ethical use cases. This prevents misuse and ensures stakeholders understand the AI's scope.
✅ D. Provide clear explanations of AI predictions or recommendations.
This practice, known as explainable AI (XAI), is fundamental to user trust and ethical design. By providing an easy-to-understand "why" behind an AI's output, users can judge the reliability of a prediction, understand any bias, and feel more in control of the interaction, ultimately leading to higher adoption and safety.
Incorrect Options
❌ A. Collect as much data from the user as possible for a catered experience.
Collecting only necessary, relevant data is a cornerstone of responsible AI design and user privacy. Collecting "as much data as possible" violates data minimization principles, increases the risk of data breaches, and raises severe ethical concerns, making it the opposite of a responsible design practice.
❌ B. Design AI that is seamless enough so the user does not notice.
Designing AI to be invisible directly contradicts the goal of transparency and accountability. Users should always be aware when they are interacting with an AI system or when a decision is being influenced by an algorithm, allowing them to establish appropriate trust and understand potential failures.
📝 Summary
Responsible and transparent AI requires the designer to prioritize user understanding and ethical boundaries. This is achieved by providing clear explanations for AI outputs (Explainable AI) to build user trust and by documenting model cards to communicate the model's intent, limitations, and ethical guidelines to all stakeholders. These steps help prevent misuse and promote accountability.
🔗 Reference
Salesforce Trailhead: Ethical AI Development
(The module discusses the importance of transparency, clarity, accountability, and the role of documentation like Model Cards in creating responsible AI technology.)
Users from a small group within a Sales team have complained about an object that is often usedonly by team that has not been added to their Lightning app. Due to the small volume of users, the administrator is not considering creating a new app for them. Which two Salesforce feature should be suggested to improve the end-user experience? Choose 2 answers
A. Favorite the often-used object.
B. Add the object’s related list to the Home page.
C. Personalize the navigation bar.
D. Create a custom component on a Dashboard.
Explanation
Correct Option:
🟢 A. Favorite the often-used object
Favoriting an object allows users to quickly access it from the navigation menu without requiring admin configuration changes. This feature empowers users to tailor their own experience, especially when a specific object is critical to their daily tasks. It is ideal for small user groups because it improves accessibility without creating or maintaining a new Lightning app.
🟢 C. Personalize the navigation bar
Personalizing the navigation bar enables users to add frequently used objects directly to their app navigation. This self-service customization improves efficiency and reduces frustration by placing important objects within easy reach. It is a scalable solution that respects admin constraints while still addressing the needs of a smaller group of users.
Incorrect Options:
🔴 B. Add the object’s related list to the Home page
Related lists are typically displayed on record pages, not used as primary navigation tools. Adding a related list to the Home page does not provide direct access to the object itself and may confuse users. This approach does not effectively solve the issue of accessing an often-used object quickly.
🔴 D. Create a custom component on a Dashboard
Dashboards are designed for data visualization and reporting, not navigation. Creating a custom dashboard component introduces unnecessary complexity and maintenance overhead. It also does not align with Salesforce best practices for improving object accessibility in Lightning Experience.
Summary:
When a small group needs easier access to a specific object, user-level customization is the best approach. Favoriting objects and personalizing the navigation bar provide quick, efficient access without requiring new apps or admin-heavy solutions. Other options either misuse features or add unnecessary complexity.
References:
Personalize the Navigation Bar is covered in Salesforce Help to customize mobile/desktop navigation per user.
Favorites (star icon) lets users quickly access frequently used items.
(These are official Salesforce features described in Salesforce Help documentation.)
Cloud Kicks (CK) has a new Portal landing page built with Experience Builder. Upon review, CK does not think the company's brand experience is translated into the user experience; however, CK does confirm the Theme was set up correctly. Which additional UX elements should be reviewed to influence the brand experience?
A. Visual Design, Harmony, and Responsiveness
B. Visual, Content, and Interaction Design
C. Shapes, Interaction Design, and Typography
Explanation
In Salesforce Experience Builder, the Theme panel primarily handles core branding like colors, fonts, logos, and basic styling. When the theme is correct but the overall brand feel is missing, designers need to examine broader UX aspects—such as visuals across components, content tone and imagery, and interactive elements—to create a cohesive, branded user journey on the portal landing page.
✅ Correct Option: B. Visual, Content, and Interaction Design
Brand experience extends beyond basic theme settings into how visual elements (images, icons, layouts), content (text, messaging, tone), and interactions (buttons, animations, flows) align with the company's identity. Reviewing these ensures the portal feels uniquely branded, engaging, and consistent, evoking the desired emotional connection with users.
❌ Incorrect Option: A. Visual Design, Harmony, and Responsiveness
While visual design and responsiveness are important for usability, "harmony" is not a specific UX element in Experience Builder branding. This option misses content and interaction, which are critical for translating brand voice, personality, and dynamic engagement into the experience.
❌ Incorrect Option: C. Shapes, Interaction Design, and Typography
Typography is typically controlled within the theme settings (already confirmed correct). Shapes are a minor subset of visual design, not a primary element. This narrow focus overlooks content strategy and broader visuals, limiting the ability to fully convey brand experience.
Summary
The theme covers basics; true brand translation comes from visual, content, and interaction design.
Review imagery, messaging, and interactive components for alignment with brand identity.
Avoid over-focusing on isolated elements like shapes or responsiveness alone.
This holistic approach creates an immersive, on-brand portal experience in Experience Builder.
Reference:
Assign Audiences to Components and Branding Sets
Cloud Kicks has identified a Trusted Advisor persona as their primary focus for the next iteration. Which key business process defining their work should be analyzed to make sure the delivered experience fits their needs?
A. Maintaining relationships with existing customers
B. Managing sales pipeline and forecasting
C. Customizing and administering Salesforce
Explanation
The Trusted Advisor persona is defined by their core responsibility of nurturing long-term client relationships and providing strategic guidance. Their work centers on existing customers, building deep trust, and identifying opportunities for growth and retention within those accounts. Therefore, analyzing this relationship-focused process is crucial to designing a relevant, supportive, and effective user experience.
Correct Option
✅ A. Maintaining relationships with existing customers
The Trusted Advisor's unique value is derived from their expertise and established trust with current customers, making relationship maintenance their central business process. To meet their needs, the UX designer must prioritize features like account health dashboards, communication tracking, and service history views that facilitate proactive and insightful customer interaction.
Incorrect Options
❌ B. Managing sales pipeline and forecasting
This process is typically the primary focus of a Sales Representative or Sales Manager persona, who are focused on new leads and closing deals. While the Trusted Advisor may influence some pipeline activities, their core responsibilities and daily tasks are centered on maximizing value from already closed accounts, not front-end sales management.
❌ C. Customizing and administering Salesforce
Customizing and administering the platform is the primary domain of a System Administrator or Developer persona. The Trusted Advisor is a business user; analyzing administrative tasks would be irrelevant to improving their daily workflow of advising clients, managing accounts, and ensuring customer satisfaction.
📝 Summary
The Trusted Advisor persona is inherently focused on long-term client success and retention, making the process of maintaining relationships with existing customers their key business driver. Analyzing this workflow ensures the new experience delivers features that support communication, relationship health, and proactive problem-solving, aligning the delivered solution directly with their professional goals and responsibilities.
🔗 Reference
Salesforce Trailhead: Understand and Define the User Experience
(The module emphasizes defining the target user's role, core business processes, and responsibilities to create an experience that fits their unique needs, which for a "Trusted Advisor" centers on existing relationships.)
Cloud Kicks (CK) wants to determine whether or not the Experience Cloud site it is launching is intuitive. CK’s UX Designer is going to conduct a usability study. What shouldbe one of the first steps when planning this study?
A. Define the goals of the study.
B. Design changes to the site.
C. Design the information architecture.
D. Analyze the results of the study.
Explanation
Correct Option:
🟢 A. Define the goals of the study
Defining clear goals is a critical first step in any usability study. It helps the UX Designer understand what “intuitive” means for users, which tasks to evaluate, and what success looks like. Well-defined goals guide participant selection, task design, and metrics, ensuring the study produces meaningful and actionable insights rather than vague feedback.
Incorrect Options:
🔴 B. Design changes to the site
Designing changes before conducting a usability study skips the research phase entirely. Without understanding user behavior and pain points, changes may be based on assumptions rather than evidence. Usability studies are meant to inform design decisions, not follow them, making this step premature.
🔴 C. Design the information architecture
Information architecture is typically created or refined during the design phase. While it may be evaluated in a usability study, it should not be the first step when planning the research. The study’s goals must be defined first to determine whether information architecture is even a focus area.
🔴 D. Analyze the results of the study
Analyzing results occurs after the usability study has been conducted. At the planning stage, there are no findings to analyze yet. Jumping to analysis without defining goals, tasks, and success criteria undermines the structure and effectiveness of the study.
Summary:
A successful usability study starts with clear objectives. Defining goals ensures the research stays focused and delivers useful insights. Other steps like design changes, information architecture, or analysis come later in the UX process and depend on the study’s outcomes.
References:
Salesforce Trailhead guides for planning usability tests explain defining goals before tasks, metrics, or analysis.
Sales managers want their team members to help each other close Opportunities. The Opportunity and Account organization-wide defaults are private. To grant Opportunity access tosales reps on the same team, owner ship-based sharing rules were created for each team. What is the side effect of this approach?
A. All sales reps will have Read access to Accounts for all Opportunities.
B. Sales Reps on the same team will have Edit access to the Accounts for Opportunities owned by then team members.
C. Sales reps on the same team will have Read access to the Accounts for Opportunities owned by their team members.
D. All sales reps will have Read access to all Accounts.
Explanation
When Account and Opportunity OWDs are both Private, creating owner-based sharing rules on Opportunity (e.g., “Owner’s Team shares with same Team”) automatically grants implicit Read-only access to the parent Account for those shared Opportunities. Salesforce does this to prevent users from seeing an Opportunity without its required Account context.
✅ Correct Option: C. Sales reps on the same team will have Read access to the Accounts for Opportunities owned by their team members.
Opportunity owner-based sharing rules trigger implicit Account sharing. Any sales rep who gains access to a teammate’s Opportunity automatically receives Read-only access to the related Account record, even if no explicit Account sharing rule exists. This ensures contextual integrity but widens Account visibility within the team.
❌ Incorrect Option: A. All sales reps will have Read access to Accounts for all Opportunities.
The sharing is limited only to Opportunities owned by members of the same team, not all Opportunities in the org. Therefore, Account access is granted only for those specific related Accounts, not universally.
❌ Incorrect Option: B. Sales Reps on the same team will have Edit access to the Accounts for Opportunities owned by their team members.
Implicit Account sharing from Opportunity rules is always Read-only. Edit access on the Account would require separate explicit sharing rules or manual sharing on the Account object itself.
❌ Incorrect Option: D. All sales reps will have Read access to all Accounts.
Access is scoped only to Accounts linked to the shared Opportunities within the same team. Sales reps do not gain Read access to every Account in the organization.
Summary
Owner-based Opportunity sharing rules automatically create implicit Read-only sharing on the parent Account.
This side effect is intentional by Salesforce to maintain data context.
Account access is limited to only those Accounts tied to the shared Opportunities within the team.
Reference:
Implicit Sharing in Salesforce
Control Access to Accounts Using Opportunity Teams
Salesforce Security Guide
| Page 5 out of 20 Pages |
| 234567 |
| Salesforce-Platform-User-Experience-Designer Practice Test Home |
Our new timed Salesforce-Platform-User-Experience-Designer practice test mirrors the exact format, number of questions, and time limit of the official exam.
The #1 challenge isn't just knowing the material; it's managing the clock. Our new simulation builds your speed and stamina.
You've studied the concepts. You've learned the material. But are you truly prepared for the pressure of the real Salesforce Certified Platform User Experience Designer - Plat-UX-101 exam?
We've launched a brand-new, timed Salesforce-Platform-User-Experience-Designer practice exam that perfectly mirrors the official exam:
✅ Same Number of Questions
✅ Same Time Limit
✅ Same Exam Feel
✅ Unique Exam Every Time
This isn't just another Salesforce-Platform-User-Experience-Designer practice questions bank. It's your ultimate preparation engine.
Enroll now and gain the unbeatable advantage of: