Formatting & distribution — quiz
6 questions covering this module. Themes, layout, scheduled email and embedding.
Why set canvas size before building?
- It cannot be changed
- Changing it later reflows every component
- It affects data
- It sets the theme
Answer: Changing it later reflows every component — You would reposition everything by hand.
How do Looker Studio reports behave on mobile?
- Components reflow automatically
- The fixed canvas scales but does not reflow
- They are hidden
- They convert to tables
Answer: The fixed canvas scales but does not reflow — Build a separate mobile page if it matters.
Owner's credentials means viewers:
- Must authenticate themselves
- See data through the owner's access, regardless of their own
- Cannot see the report
- Get read-only data
Answer: See data through the owner's access, regardless of their own — Convenient, and the usual cause of unintended data exposure.
A scheduled email PDF renders with:
- The last filter used
- The report default filter state
- No filters
- The recipient's filters
Answer: The report default filter state — Set sensible defaults before scheduling.
Which typically gives the biggest speed improvement?
- Removing colours
- Extract data, or aggregating upstream
- Fewer pages
- A different theme
Answer: Extract data, or aggregating upstream — Query volume and row count dominate performance.
Why are blends often slow?
- They cache badly
- Each source is queried separately
- They use more memory
- They ignore filters
Answer: Each source is queried separately — An upstream join avoids the extra round trips.