Practice SALESFORCE-PD1 User Interface questions with full explanations on every answer.
Start practicing
User Interface — choose a session length
Free · No account required
Click any question to see the full explanation and answer options, or start a focused practice session above.
A developer needs to retrieve Salesforce data in a Lightning Web Component without writing imperative Apex. Which module should be imported to use the wire service for standard record data?
2A developer creates a Visualforce page and wants to include standard Salesforce styling. Which attribute on the <apex:page> tag enables this?
3A developer creates a custom LWC that wraps child components. The developer needs to pass styling from the parent component into specific slots of the child component. Which CSS selector should be used inside the child component to style content passed into a slot?
4A developer is writing an Aura component and needs to handle an event fired by a child component. Which attribute is required in the aura:handler tag on the parent component?
5A developer wants to style a Lightning Web Component using the Salesforce Lightning Design System (SLDS). What is the recommended way to include SLDS styling?
6A developer is building a Lightning Web Component and needs to execute code as soon as the component is inserted into the DOM. Which lifecycle hook should be used?
7An LWC component uses a wire adapter to fetch account records. The developer needs to update the parameters passed to the wire adapter dynamically based on user input. How should this be implemented?
8Which SLDS utility class should a developer use to add a standard margin around a container?
9A developer creates a Lightning Web Component that includes a third-party JavaScript library loaded via a Static Resource. In which lifecycle hook should the third-party library be initialized?
10A developer is working with a Lightning Web Component and needs to access a child component's public method from the parent component. How is this achieved?
11Which lifecycle hook in a Lightning Web Component is called after every render of the component?
12A developer needs to navigate to a record detail page from a Lightning Web Component. Which service should be used?
13A developer is building a Visualforce page that uses a custom controller and needs to display a message to the user when an error occurs. Which class and method should be used?
14A developer is writing a custom wire adapter or working with custom data in LWC and needs to manually provision data or force a refresh of wire data. Which function should be imported from lightning/uiRecordApi or related wire modules?
15What is the correct file extension for a Lightning Web Component HTML template file?
16Which tag is used in Visualforce to iterate over a collection of records and display them in a table?
17A developer needs to configure a Lightning Web Component to be available for use on Lightning Record Pages. Which configuration entry must be present in the component's metadata file (.js-meta.xml)?
18A developer is creating a Lightning Web Component and needs to style a child component from a parent component across the shadow DOM boundary. What feature enables custom styling hooks?
19A developer wants to conditionally display an HTML element in a Lightning Web Component template based on a boolean property named 'isVisible'. Which directive should be used?
20Which annotation must be used on an Apex method to make it available for use with the @wire service in a Lightning Web Component?
21A developer needs to catch unhandled JavaScript errors in a Lightning Web Component hierarchy so the entire app doesn't crash. Which lifecycle hook handles errors thrown by descendant components?
22A developer is building a Visualforce page and wants to execute an action method on the controller when a user clicks a button, without performing a full page reload. Which component should be wrapped around the area to be updated?
23Which base Lightning component should be used in an LWC to display a standard button?
24What is the correct syntax to reference a custom label in a Lightning Web Component JavaScript file?
25A developer is configuring a Lightning Web Component that uses the Lightning Message Service (LMS). Which module must be imported to publish a message on a message channel?
26Which SLDS grid class should be used to create a flexible container where items wrap automatically onto multiple rows?
27A developer is creating a Lightning Web Component and needs to iterate over a list of items in the HTML template. Which directive should be used?
28A developer is writing a Visualforce page with custom controller logic and needs to ensure that database operations are executed transactionally. What happens by default when an unhandled exception occurs during a controller action method?
29A developer is implementing a Lightning Web Component that handles drag-and-drop functionality. Which native DOM event is typically intercepted to allow a drop action on an element?
30A developer has a Lightning Web Component with a reactive property 'recordId'. How should the property be decorated to ensure it receives the current record ID when placed on a record page?
31A developer needs to access a specific HTML element in a Lightning Web Component template imperatively. Which method should be called?
32Which tag is used in Visualforce to include custom CSS stylesheets?
33What is the maximum number of view state bytes allowed in a Visualforce page before Salesforce throws an error?
34A developer is writing an Aura component and needs to dynamically create a component at runtime. Which JavaScript method should be used?
35A developer is building a Lightning Web Component and needs to perform validation on an input field before submission. Which method on a lighting-input element checks validity?
36Which base component should be used in LWC to display a tabular grid of data with sorting and row selection?
37A developer wants to prevent sensitive fields from being included in the Visualforce view state to reduce size. Which keyword should be added to the field declaration in the controller?
38A developer is building a Lightning Web Component and needs to listen to a custom event dispatched by a child component. How is the event listener attached in the parent HTML template?
39A developer needs to format a currency value according to the user's locale in a Lightning Web Component HTML template. Which base component should be used?
40A developer is working with a Lightning Web Component and needs to ensure reactive updates occur when an object property or array element changes inside a tracked property. What is the correct approach in modern LWC?
41Which tag is used in Visualforce to output field labels and values dynamically based on sObject field definitions?
42A developer creates a Lightning Web Component that consumes data from a wire adapter. The wire adapter returns an object with 'data' and 'error' properties. What is this pattern called in LWC?
43A developer is building a Lightning Web Component and needs to navigate to a URL that is external to Salesforce. Which PageReference type should be used with NavigationMixin?
44Which base Lightning component is used to show a progress indicator or spinner in LWC?
45A developer is configuring a Lightning Web Component to be used as a Quick Action on a record page. Which target configuration must be added to the component's metadata file?
46Which tag is used in Visualforce to embed JavaScript code directly inside the page?
47A developer is building a Lightning Web Component and needs to dispatch a custom event. Which constructor should be used to create the event?
48Which TWO lifecycle hooks are available in Lightning Web Components? Choose 2 answers.
49A developer is using the Lightning Message Service and needs to unsubscribe from a message channel when a component is destroyed. In which lifecycle hook should unsubscribe be called?
50Which TWO tools or features are recommended for styling Lightning Web Components according to best practices? Choose 2 answers.
51Which TWO conditions must be met for an Apex method to be wired using the @wire service in an LWC? Choose 2 answers.
52Which TWO techniques can be used to pass data from a parent component to a child Lightning Web Component? Choose 2 answers.
53Which TWO configuration files or metadata elements are required when creating a Lightning Web Component? Choose 2 answers.
54Which THREE statements are true regarding Lightning Web Component shadow DOM encapsulation? Choose 3 answers.
55Which THREE features or capabilities are supported by the Lightning Message Service (LMS)? Choose 3 answers.
56Which THREE actions should a developer take to optimize Visualforce view state performance? Choose 3 answers.
57Which TWO actions can a developer perform using standard Visualforce controllers? Choose 2 answers.
58Which TWO methods can be used to navigate to a standard Salesforce object's home page from a Lightning Web Component? Choose 2 answers.
59Which THREE practices are considered security best practices when developing custom Visualforce pages to prevent Cross-Site Scripting (XSS)? Choose 3 answers.
60Which TWO ways can a developer trigger a server-side Apex method imperatively from a Lightning Web Component? Choose 2 answers.
61Which THREE requirements must be met when implementing a custom Lightning Web Component pagination control? Choose 3 answers.
62Which TWO actions should a developer take when handling errors returned by an imperative Apex call in a Lightning Web Component? Choose 2 answers.
63Which THREE strategies are recommended for improving the performance of Lightning Web Components rendering large lists of data? Choose 3 answers.
64A developer is building a Lightning Web Component and needs to execute code as soon as the component is inserted into the DOM. Which lifecycle hook should the developer use?
65A developer is creating a Lightning Web Component that needs to display a list of Accounts. The developer wants to fetch the data imperatively when a user clicks a button rather than automatically via a wire adapter. What is the correct approach?
66A developer needs to pass data from a child Lightning Web Component to a parent Lightning Web Component up the component hierarchy. What is the standard mechanism to achieve this?
67A developer is working with a Visualforce page and wants to display a list of Account records using standard styling that matches the Salesforce Classic UI. Which component should the developer include?
68A developer is styling a Lightning Web Component using the Salesforce Lightning Design System (SLDS). To ensure the component adheres to the standard styling guidelines for spacing, what should the developer use?
69A developer has an Aura component that needs to communicate with an unrelated Lightning Web Component located on the same Lightning page. Which feature should the developer implement?
70A developer needs to ensure that a Lightning Web Component can be placed on a Record Page for an Account in the Lightning App Builder. What must be configured in the component's metadata configuration file?
71A developer is creating a reusable LWC utility and needs to invoke an Apex method imperatively. The method accepts a record ID parameter. What is the correct way to pass this parameter in JavaScript?
72A developer is building a Lightning Web Component that includes a custom wire adapter to fetch custom metadata. The wire adapter needs to react whenever a tracked property changes value. How should the developer wire the property?
73A developer is writing a Visualforce page and wants to include standard Salesforce styling and icons. What tag should be added to the top of the Visualforce page?
74A developer has created a custom Aura component that needs to be embedded within a Lightning Web Component. What is the correct rule regarding component composition between Aura and LWC?
75A developer is troubleshooting a Lightning Web Component where data returned from an Apex wire adapter needs to be mutated before being rendered. What is the correct pattern to handle this?
76Which lifecycle hook in a Lightning Web Component runs after every render of the component?
77A developer is writing a Lightning Web Component and needs to load a third-party JavaScript library (such as D3.js) stored as a static resource. Which lifecycle hook is most appropriate for initiating the load using loadScript?
78A developer needs to display a toast notification in a Lightning Web Component when a record is successfully saved. Which module should the developer import?
79A developer is creating a Visualforce page that overrides the standard Account View action. Which attribute must be included in the <apex:page> tag to ensure standard controller functionality?
80A developer is building an Aura component and needs to include a Lightning Web Component inside it. How does the Aura markup reference the LWC?
81A developer is writing a Lightning Web Component and needs to conditionally render a block of HTML markup based on a boolean property named 'isVisible'. What is the correct syntax in the HTML template?
82Which CSS methodology forms the foundation of the styling architecture in Salesforce Lightning Design System (SLDS)?
83A developer is implementing a Lightning Web Component with a custom CSS file. How does the component load its associated stylesheet?
84A developer is working with the Lightning Data Service (LDS) via the @wire decorator to get record data. The record is updated elsewhere in the app, and the developer wants to imperatively refresh the wire data cache. Which function should be called?
85A developer needs to create a custom tab for a Lightning Web Component so it can be navigated to from the App Launcher. What type of custom tab must be created?
86A developer is building a Lightning Web Component that includes user input fields. To adhere to best practices for accessibility and SLDS form styling, how should form inputs be structured?
87A developer creates a parent Lightning Web Component containing a child component. The parent needs to call a public method defined inside the child component. How is this accomplished?
88A developer is writing a Visualforce page and wants to display messages generated by controllers or validation rules. Which component should be used?
89A developer is configuring a Lightning Web Component metadata file to allow the component to be placed on a FlexPage. Which tag defines the configuration regions or design properties?
90A developer is implementing a custom pagination mechanism in a Lightning Web Component. The component uses an Apex controller method that returns a list of records. Which technique prevents excessive heap size and improves performance when dealing with large datasets?
91A developer is building a Lightning Web Component and wants to define a property that can be set by a parent component. Which decorator is required?
92A developer needs to include a third-party style sheet in a Lightning Web Component. What is the standard way to load CSS styles that are stored as a static resource?
93A developer is troubleshooting an issue where a Lightning Web Component is not picking up changes to the internal fields of an object property. What is the cause of this behavior in LWC reactivity?
94Which tool or feature should a developer use to test Lightning Web Components locally on their workstation without deploying to Salesforce every time?
95A developer is writing a Visualforce page that uses a custom controller. The page needs to execute an action method as soon as the page loads, without requiring user interaction. Which attribute on <apex:page> should be used?
96A developer is implementing navigation in a Lightning Experience app using the NavigationMixin service in a Lightning Web Component. The developer wants to navigate to a standard ListView for the Account object. What is the correct type to specify?
97A developer needs to create a Lightning Web Component configuration file. What is the required file extension and naming convention?
98A developer is building a Lightning Web Component and wants to iterate over a list of items in the HTML template. Which directive should be used?
99A developer is creating a Lightning Web Component that needs to interact with Salesforce data using Lightning Data Service. Which TWO wire adapters are natively available in the @salesforce/apex or lightning/ui* modules for basic record operations? (Choose TWO)
100A developer is implementing communication in Lightning Web Components. Which TWO mechanisms are valid for passing data or messages between components? (Choose TWO)
101A developer is reviewing a Lightning Web Component that makes calls to an Apex controller. Which THREE best practices should be followed when designing the Apex methods for LWC consumption? (Choose THREE)
102A developer is building a Lightning Web Component and wants to style it using Salesforce Lightning Design System (SLDS). Which TWO statements are true regarding SLDS usage in LWC? (Choose TWO)
103A developer is troubleshooting lifecycle hooks and rendering behavior in a Lightning Web Component. Which THREE statements are correct regarding LWC lifecycle execution order? (Choose THREE)
104A developer is designing a Lightning Web Component that needs to be conditionally displayed in different Salesforce containers. Which TWO targets are valid entries in the component's js-meta.xml configuration file? (Choose TWO)
105A developer is creating an Aura component that interacts with Salesforce data. Which TWO tags or features are valid in the Aura framework? (Choose TWO)
106Which TWO features are provided out-of-the-box by Visualforce when building standard user interfaces? (Choose TWO)
107Which TWO tools or environments are officially supported for developing Lightning Web Components? (Choose TWO)
108A developer is working with component styling and design tokens in Lightning Web Components. Which TWO practices apply when working with SLDS styling in LWC? (Choose TWO)
109A developer is implementing error handling for an imperative Apex call in a Lightning Web Component. Which THREE properties or techniques are standard for catching and inspecting errors returned from Apex promises? (Choose THREE)
110A developer is utilizing the Lightning Message Service (LMS) to facilitate communication between an Aura component and a Lightning Web Component. Which THREE steps are required to implement LMS successfully? (Choose THREE)
111Which TWO statements are true regarding the differences between Aura components and Lightning Web Components (LWC)? (Choose TWO)
112A developer is building a Lightning Web Component that needs to fetch records imperatively based on a user interaction. Which Lightning module should the developer import to access Salesforce data imperatively in JavaScript?
113A developer wants to include a custom styling hook to override a standard Lightning Design System component token in a Lightning Web Component. Where should this CSS custom property be defined?
114A Lightning Web Component needs to communicate an event up to a grandparent component that is nested two levels above. What is the best practice to achieve this in LWC?
115A developer is implementing a Visualforce page that displays a list of accounts and needs to ensure that it adheres to Salesforce security best practices by preventing cross-site scripting (XSS) attacks. Which tag or attribute combination should be used to securely output user-supplied data?
116A developer needs to execute initialization logic as soon as a Lightning Web Component is inserted into the DOM. Which lifecycle hook should be used?
117A developer is building a Lightning Web Component that must be made available for use on Lightning Record Pages. Which configuration tag must be included in the component's metadata file?
118A developer is designing a Lightning Web Component that needs to communicate with another component located anywhere in the application hierarchy, including unrelated components. Which TWO mechanisms are valid and appropriate for this requirement? Choose 2 answers.
119A developer is working with a Lightning Web Component that uses the @wire decorator to provision data from an Apex method. The Apex method depends on a property that changes dynamically. How should the property be prefixed to signal reactivity to the wire service?
120A developer is troubleshooting a Lightning Web Component where data retrieved via the @wire service needs to be formatted before being rendered in the template. Which THREE approaches are valid ways to handle or transform wired data? Choose 3 answers.
121Which THREE statements are true regarding the standard Salesforce Lightning Design System (SLDS)? Choose 3 answers.
The User Interface domain covers the key concepts tested in this area of the SALESFORCE-PD1 exam blueprint published by Salesforce. Courseiva provides free domain-focused practice, mock exams, missed-question review, and readiness tracking across all SALESFORCE-PD1 domains — no account required.
The Courseiva SALESFORCE-PD1 question bank contains 121 questions in the User Interface domain. Click any question to see the full explanation and answer breakdown.
Start with a 10-question focused session to identify your baseline accuracy in this domain. Read every explanation — even for questions you answer correctly — to understand the reasoning. Once you score consistently above 80%, move to a 20–30 question session to confirm depth before moving to the next domain.
Yes — the session launcher on this page draws questions exclusively from the User Interface domain. Choose 10, 20, 30, or 50 questions for a focused session, or click individual questions to review them one by one.
Save your results, see per-domain analytics, and get readiness scores — free, for every certification.
Sign Up FreeFree forever · Every certification included