0
0
Tableaubi_tool~20 mins

Device-specific layouts in Tableau - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Device Layout Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding Device-Specific Layouts in Tableau

Which statement best describes the purpose of device-specific layouts in Tableau dashboards?

AThey convert dashboards into static images for faster loading on mobile devices.
BThey automatically change data sources based on the device used to view the dashboard.
CThey allow creating different dashboard versions optimized for desktop, tablet, and phone devices.
DThey enable embedding dashboards into mobile apps without any changes.
Attempts:
2 left
💡 Hint

Think about how dashboards can look different on phones versus desktops.

visualization
intermediate
2:00remaining
Choosing the Right Device Layout for a Dashboard

You have a sales dashboard with many detailed charts. Which device-specific layout should you prioritize to ensure the best user experience on a phone?

ACreate a phone layout with simplified charts and fewer filters.
BUse the desktop layout as is for the phone device.
CCreate a tablet layout and assign it to phone devices.
DDisable device layouts and rely on automatic scaling.
Attempts:
2 left
💡 Hint

Phones have smaller screens, so think about what users can easily see and interact with.

🔧 Formula Fix
advanced
2:00remaining
Troubleshooting Device Layout Visibility

You created a phone layout for your dashboard, but when viewing on a phone, the desktop layout still appears. What is the most likely cause?

AThe phone layout was created but not assigned to the phone device type.
BThe dashboard contains unsupported objects that prevent device layouts from displaying.
CThe device preview mode was not enabled in Tableau Desktop.
DThe phone layout was not published to Tableau Server or Tableau Online.
Attempts:
2 left
💡 Hint

Check if the layout is properly linked to the device type.

🎯 Scenario
advanced
2:00remaining
Optimizing Dashboard Performance with Device Layouts

You notice your dashboard loads slowly on tablets. You want to improve performance using device-specific layouts. Which approach is best?

AAdd more filters to the tablet layout to limit data shown.
BUse the desktop layout for tablets but reduce the data source size.
CDisable device layouts and rely on Tableau's automatic device scaling.
DCreate a tablet layout with fewer visualizations and simpler calculations.
Attempts:
2 left
💡 Hint

Think about how reducing complexity affects loading speed.

dax_lod_result
expert
3:00remaining
Device Layout Usage Analysis with LOD Expressions

In Tableau, you want to calculate the percentage of users who view the dashboard using the phone layout versus all device layouts. Which LOD expression correctly calculates this percentage?

Assume [Device Type] field contains values 'Phone', 'Tablet', 'Desktop'.

ACOUNTD(IF [Device Type] = 'Phone' THEN [User ID] END) / COUNTD([User ID])
B{ FIXED : COUNTD(IF [Device Type] = 'Phone' THEN [User ID] END) } / COUNTD([User ID])
C{ INCLUDE [Device Type] : COUNTD([User ID]) } / COUNTD([User ID])
D{ EXCLUDE [Device Type] : COUNTD(IF [Device Type] = 'Phone' THEN [User ID] END) } / COUNTD([User ID])
Attempts:
2 left
💡 Hint

Think about how to fix the calculation at the overall level ignoring dimensions.