DS0-001 · Question #126
DS0-001 Question #126: Real Exam Question with Answer & Explanation
The correct answer is C: Client-side. Client-side scripting runs directly in the web browser on the user's machine, making it the only option that executes within a browser environment. JavaScript is the most common example - browsers have built-in engines (like V8 in Chrome) specifically designed to parse and run cl
Question
Which of the following types of scripting can be executed on a web browser?
Options
- AServer-side
- BPowerShell
- CClient-side
- DCommand-line
Explanation
Client-side scripting runs directly in the web browser on the user's machine, making it the only option that executes within a browser environment. JavaScript is the most common example - browsers have built-in engines (like V8 in Chrome) specifically designed to parse and run client-side scripts embedded in web pages.
Server-side scripting (A) executes on the web server before the response is sent to the browser - languages like PHP or Node.js never reach the client's machine as raw code. PowerShell (B) is a Microsoft shell scripting language designed for system administration tasks on Windows OS, not browsers. Command-line (D) refers to terminal/shell environments (cmd, bash) that run on the operating system level, completely outside any browser context.
Memory tip: Think "client = customer = browser user" - client-side scripting serves the client (the browser), while everything else runs somewhere behind the scenes on a server or OS.
Community Discussion
No community discussion yet for this question.