Multiple choice technology web technology

With the following directive in a web page designed for desktop, mobile device will never receive cached desktop web page: <%@ OutputCache Duration="60" %>

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The OutputCache directive caches based on URL and parameters, not device type. Without device-specific caching logic (like VaryByCustom), a mobile device making the same URL request could receive the desktop-cached version. The statement that it will 'never' receive the cached page is false.