1D0-720 · Question #85
Which of the following is a common feature of HTML5 APIs?
The correct answer is A. Offline storage capability. HTML5 introduced built-in APIs for offline storage (via localStorage, sessionStorage, and the Cache API), allowing web apps to persist data in the browser and even function without an internet connection - making A correct. B is wrong because server-side scripting (PHP…
Question
Which of the following is a common feature of HTML5 APIs?
Options
- AOffline storage capability
- BServer-side scripting
- CAutomatic website translation
- D3D graphics rendering
How the community answered
(34 responses)- A94% (32)
- B3% (1)
- D3% (1)
Explanation
HTML5 introduced built-in APIs for offline storage (via localStorage, sessionStorage, and the Cache API), allowing web apps to persist data in the browser and even function without an internet connection - making A correct. B is wrong because server-side scripting (PHP, Node.js, etc.) runs on the server, not in the browser, and has nothing to do with HTML5. C is false because HTML5 has no automatic translation capability; that's handled by external services like Google Translate. D is partially misleading - HTML5 does include the <canvas> element with WebGL for 3D rendering, but this is not described as a "common feature of HTML5 APIs" in the same foundational way offline storage is, and the question targets the most broadly applicable answer.
Memory tip: Think "HTML5 = browser power-ups" - offline storage is the quintessential example of HTML5 giving the browser capabilities it previously lacked, independent of any server.
Topics
Community Discussion
No community discussion yet for this question.