SALESFORCE-PD1 User Interface Practice Question
A 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?
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
type: 'standard__objectPage', attributes: { objectApiName: 'Account', actionName: 'list' }
NavigationMixin.Navigate uses standard page references where type is 'standard__objectPage' and actionName is 'list'.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✓
type: 'standard__objectPage', attributes: { objectApiName: 'Account', actionName: 'list' }
Why this is correct
Correct because objectPage with actionName list navigates to a standard object list view.
- ✗
type: 'standard__webPage', attributes: { url: '/lightning/o/Account/list' }
Why it's wrong here
Incorrect because while webPage works with URLs, objectPage is the preferred standard page reference.
- ✗
type: 'standard__recordPage', attributes: { objectApiName: 'Account', actionName: 'view' }
Why it's wrong here
Incorrect because recordPage is for viewing a single record.
- ✗
type: 'standard__namedPage', attributes: { pageName: 'accountList' }
Why it's wrong here
Incorrect because standard__namedPage is for standard home or chatter pages.
About these practice questions
Courseiva writes every SALESFORCE-PD1 question from scratch — 493 in total, each with an explanation and a wrong-answer breakdown. None are copied from real exams or dumps. Learn why practice questions differ from exam dumps →
JA
Written and reviewed by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
Last reviewed August 2026 · checked against the official Salesforce exam blueprint
This SALESFORCE-PD1 practice question is part of Courseiva's free Salesforce certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the SALESFORCE-PD1 exam.