Tag: web technology

Questions Related to web technology

Multiple choice technology web technology
  1. Se utilizan para crear valor en forma de salida para la gestión de producción

  2. Se utilizan para crear valor en forma de bienes y servicios

  3. Se utilizan para crear valor para la organización de TI para el Servicio de Apoyo

  4. Se utilizan para crear valor para la organización de TI para la prestación de servicios

Reveal answer Fill a bubble to check yourself
B Correct answer
Multiple choice technology web technology
  1. GenericServlet is for servlets that might not use HTTP, like for instance FTP service.

  2. As of only Http is implemented completely in GenericServlet.

  3. The GenericServlet has a service() method that gets called when a client request is made.

  4. GenericServlet is called by both incoming requests and the HTTP requests are given to the servlet as they are.

Reveal answer Fill a bubble to check yourself
A,C,D Correct answer
Multiple choice technology web technology
  1. A java.lang.IllegalStateException is thrown ("response already committed")

  2. An HTTP 402 Payment Required error is returned to the client

  3. An HTTP 404 Not Found error is returned to the client

  4. A java.lang.NullPointerException is thrown

Reveal answer Fill a bubble to check yourself
A Correct answer
Multiple choice technology web technology
  1. Objects with application scope are accessible from pages processing requests that are in the same application as they one in which they were created.

  2. All references to the object shall be released when the runtime environment reclaims the ServletContext.

  3. Objects with application scope can be defined (and reached) from pages that are not session-aware

  4. References to objects with application scope are stored in the application object associated with a page activation

Reveal answer Fill a bubble to check yourself
A,B,C,D Correct answer