0
0
Wordpressframework~20 mins

Dashboard navigation in Wordpress - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Dashboard Navigation Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
1:30remaining
Understanding Dashboard Navigation Basics

Which of the following best describes the primary purpose of dashboard navigation in a business intelligence tool?

ATo export raw data from the dashboard to external files
BTo create new data models within the dashboard
CTo allow users to switch between different reports and views easily
DTo write complex DAX formulas directly on the dashboard
Attempts:
2 left
💡 Hint

Think about what helps users move around in a dashboard.

visualization
intermediate
1:30remaining
Best Practice for Navigation Buttons

You want to add navigation buttons to your WordPress BI dashboard for switching between monthly and yearly sales reports. Which design choice follows best practices?

AUse clearly labeled buttons with high contrast colors and place them at the top of the dashboard
BUse small unlabeled icons scattered randomly on the page
CPlace navigation links only in the footer with low contrast colors
DUse pop-up alerts to ask users where they want to go each time
Attempts:
2 left
💡 Hint

Think about what makes buttons easy to find and understand.

dax_lod_result
advanced
2:00remaining
DAX Measure for Navigation Filter

Given a sales dashboard with a slicer for Year, which DAX measure correctly calculates total sales filtered by the selected year?

Sales Amount = SUM(Sales[Amount])
Wordpress
Sales Amount Selected Year = CALCULATE(SUM(Sales[Amount]), ALLSELECTED(Sales[Year]))
ASales Amount Selected Year = SUM(Sales[Amount])
BSales Amount Selected Year = CALCULATE(SUM(Sales[Amount]), ALLSELECTED(Sales[Year]))
CSales Amount Selected Year = CALCULATE(SUM(Sales[Amount]), ALL(Sales[Year]))
DSales Amount Selected Year = CALCULATE(SUM(Sales[Amount]), FILTER(Sales, Sales[Year] = MAX(Sales[Year])))
Attempts:
2 left
💡 Hint

ALLSELECTED keeps slicer filters applied by the user.

🎯 Scenario
advanced
2:00remaining
Improving Dashboard Navigation for Mobile Users

Your WordPress BI dashboard is hard to navigate on mobile devices because the navigation menu is too wide and buttons are small. What is the best approach to improve mobile navigation?

AImplement a collapsible hamburger menu with large touch-friendly buttons
BKeep the desktop menu as is and ask users to zoom in
CRemove all navigation buttons to save space
DUse pop-up windows for navigation options
Attempts:
2 left
💡 Hint

Think about common mobile navigation patterns.

🔧 Debug
expert
2:30remaining
Debugging Broken Navigation Links

You added navigation links in your WordPress BI dashboard, but clicking them does not change the view. Which of the following is the most likely cause?

AThe dashboard uses too many visuals causing slow loading
BThe dashboard data model is missing a primary key
CThe DAX measures are not using CALCULATE function
DThe links have incorrect URLs or page IDs, so they do not point to existing dashboard pages
Attempts:
2 left
💡 Hint

Think about what controls navigation links behavior.