Which of the following is a technology used for server-side scripting? MCQ with Answer and Explanation

Which of the following is a technology used for server-side scripting?
A. CSS
B. PHP
C. HTML
D. JavaScript (client-side)
Answer: Option B
Solution (By JKSSB Mock Tests)
PHP is a widely-used server-side scripting language for web development, while JavaScript is typically client-side, and CSS/HTML are for presentation and structure.

Discuss this Question (0)

No comments yet. Be the first to start the discussion!

Practice More Internet and Web Technologies Questions

Question #1
What does the 'WWW' stand for, and who is officially credited with its invention?
A. World Wide Web, Alan Turing
B. World Wide Web, Tim Berners-Lee
C. World Wide Wireless, Vint Cerf
D. Web Working Wireless, Robert Kahn

Correct Answer: Option B


Explanation:
The World Wide Web (WWW) was invented by the British scientist Sir Tim Berners-Lee while working at CERN in 1989.

This question belongs to: Computer Internet and Web Technologies
Question #2
Which type of web application asset functions as an structured structured configuration layout defining metadata structures, used widely to map structural sitemaps over the web?
A. XML file (.xml)
B. Unlinked configuration log text
C. SMTP routing statement parameters
D. CSS formatting style schemas

Correct Answer: Option A


Explanation:
XML files use structured data tags to store site indices and document configurations cleanly, making them a common choice for sitemaps and data feeds parsed by web crawlers.

This question belongs to: Computer Internet and Web Technologies
Question #3
What is the function of the 'defer' attribute in a script tag?
A. To execute the script asynchronously
B. To prevent script from running
C. To delay script execution until the page has parsed
D. To load the script after page load

Correct Answer: Option C


Explanation:
The defer attribute tells the browser to continue parsing the HTML while the script downloads, and execute it after the document is parsed, in order.

This question belongs to: Computer Internet and Web Technologies