A user frequently visits a media-heavy site on a flaky network. How can you optimize the user experience, ensuring minimal load times on subsequent visits?

  • a) Implement client-side rendering for media files.
  • b) Use lazy loading for media: Load images and videos only when they come into the viewport.
  • c) Increase the size of media files to maintain quality on slow networks.
  • d) Disable all media content on the site for users on flaky networks.
To optimize the user experience for a media-heavy site on a flaky network, lazy loading (option b) is the best approach. This technique ensures that images and videos are loaded only when they become visible in the viewport, reducing initial load times. Client-side rendering (option a) may increase load times, larger media files (option c) are counterproductive on slow networks, and disabling all media content (option d) is not a user-friendly solution.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *