Question:

Which one of the following is commonly used for server side scripting in web development?

Show Hint

Server-side scripting languages like PHP handle operations on the server before the web page is delivered to the user’s browser, unlike client-side scripting languages like JavaScript.
Updated On: May 4, 2025
  • HTML
  • CSS
  • PHP
  • JavaScript
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is C

Solution and Explanation

- HTML: HTML (HyperText Markup Language) is used for creating the structure of web pages and is not used for server-side scripting.
- CSS: CSS (Cascading Style Sheets) is used for styling the web pages and is not used for server-side scripting.
- PHP: PHP (Hypertext Preprocessor) is a widely used server-side scripting language. It is commonly used to develop dynamic web pages and interact with databases.
- JavaScript: JavaScript is typically used for client-side scripting. It runs in the user's browser to provide dynamic and interactive features, but it can also be used server-side with Node.js.
Therefore, the correct answer is 3. PHP.

Was this answer helpful?
0
0