Skip to main content

Which of the following is a program that achieves dynamic processing in a web

Which of the following is a program that achieves dynamic processing in a web?
a) JavaScript b) Java applet c) Java servlet d) VBScript

Answare: c



Explanation:

  • JavaScript: Runs on the client-side (in the browser), not just on the server.
  • Java applet: Runs on the client-side (in the browser with a Java plugin), though not commonly used anymore.
  • Java servlet: A server-side program that runs on the web server to handle dynamic processing (e.g., generating dynamic web content).
  • VBScript: Primarily a client-side scripting language (although it can be used server-side with ASP, it's not as common as Java servlets for server-side operations).
  • Comments