Difficulty: Easy
Correct Answer: The web browser (client)
Explanation:
Introduction / Context:
Client-side extensions enhance the user’s browser with additional capabilities. Examples include JavaScript libraries, browser plug-ins, web components, and other client-executed features that improve interactivity and presentation without server execution.
Given Data / Assumptions:
Concept / Approach:
Differentiate between client-side (executed by the browser) and server-side (executed on the server). Client-side extensions manipulate the DOM, handle events, and perform local computations, potentially calling APIs for data.
Step-by-Step Solution:
Verification / Alternative check:
Developer tools show scripts running in the browser, confirming client execution.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing client-side extensions with server-side frameworks; mixing deployment targets.
Final Answer:
The web browser (client)
Discussion & Comments