Multiple choice technology web technology

It is possible to call an external application like MSWord by the click on the JSP page or Servlet?

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

JSP and Servlets can invoke external applications using Runtime.getRuntime().exec() or ProcessBuilder. The external process runs on the server side, not the client browser. This is useful for server-side processing but requires proper security considerations.