0
0
GCPcloud~20 mins

Looker for visualization in GCP - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Looker Visualization Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
service_behavior
intermediate
2:00remaining
How does Looker handle data refresh for visualizations?

Looker connects to your data warehouse to create visualizations. When you open a dashboard, how does Looker ensure the data is up to date?

ALooker stores a local copy of the data and updates it once a day automatically.
BLooker queries the data warehouse live each time you open or refresh a dashboard to get the latest data.
CLooker only updates data when you manually export and re-import datasets.
DLooker caches data permanently and never refreshes it unless you rebuild the entire dashboard.
Attempts:
2 left
💡 Hint

Think about how Looker connects to your data source and how it keeps data fresh for users.

Architecture
intermediate
2:00remaining
Which Looker component defines how data is modeled for visualization?

Looker uses a special layer to describe your data structure and relationships before creating visualizations. What is this layer called?

AData extracts
BSQL views in the data warehouse
CLooker dashboards
DLookML model files
Attempts:
2 left
💡 Hint

This layer uses a language designed by Looker to define data relationships and metrics.

security
advanced
2:30remaining
How does Looker enforce data access control for different users?

You want to ensure users only see data they are allowed to view in Looker dashboards. Which method does Looker use to enforce this?

ALooker relies on the data warehouse to block unauthorized queries without any configuration.
BLooker exports data to separate files per user to control access.
CLooker applies row-level security filters based on user attributes defined in LookML and user roles.
DLooker disables dashboards for users without permission but does not filter data inside dashboards.
Attempts:
2 left
💡 Hint

Think about how Looker uses user roles and attributes to limit data visibility.

Best Practice
advanced
2:30remaining
What is a recommended practice to optimize Looker dashboard performance?

You notice some Looker dashboards load slowly. Which practice helps improve dashboard load times?

AUse persistent derived tables (PDTs) to precompute complex queries and speed up dashboards.
BAdd more visualizations with complex calculations directly in dashboards to reduce modeling effort.
CDisable caching so dashboards always query live data for accuracy.
DUse only raw SQL queries in dashboards without LookML models.
Attempts:
2 left
💡 Hint

Think about precomputing data to avoid slow live queries.

🧠 Conceptual
expert
3:00remaining
What happens if a Looker user tries to access a dashboard with a missing or invalid LookML model?

Consider a scenario where the LookML model defining a dashboard's data is deleted or corrupted. What will the user experience when opening that dashboard?

ALooker will show an error message indicating the model is missing or invalid, and the dashboard will not load.
BLooker will automatically rebuild the model from the data warehouse schema and display the dashboard.
CLooker will display the last cached version of the dashboard without errors.
DLooker will silently skip the missing model and show an empty dashboard.
Attempts:
2 left
💡 Hint

Think about how Looker depends on LookML models to define data structure.