Object Diagrams can be derived from class diagrams
True
False
¿En una organización para que se usan los recursos y capacidades ?
Se utilizan para crear valor en forma de salida para la gestión de producción
Se utilizan para crear valor en forma de bienes y servicios
Se utilizan para crear valor para la organización de TI para el Servicio de Apoyo
Se utilizan para crear valor para la organización de TI para la prestación de servicios
The error message displayed when the page is not found at the correct location.
404
505
440
550
State true or false -- Can a JSP process HTML form data
Which of the following statements is true about the GenericServlet. (Multiple choice)
GenericServlet is for servlets that might not use HTTP, like for instance FTP service.
As of only Http is implemented completely in GenericServlet.
The GenericServlet has a service() method that gets called when a client request is made.
GenericServlet is called by both incoming requests and the HTTP requests are given to the servlet as they are.
When u try to redirect a page after you already have written something in your page, the error encountered is “Response has already been committed error” or popularly called 402 error.
URLConnection instance represents a link for accessing or communicating with the resource at the location.
Java Server Pages technology commonly called JSP technology offers the following advantages
Separation of dynamic and static content.
Support for scripting and tags
Reuse of components and tags.
Web access layer for N-tier enterprise application architecture
Which of the following statements is true about the scope of ‘application’ in JSP ?
Objects with application scope are accessible from pages processing requests that are in the same application as they one in which they were created.
All references to the object shall be released when the runtime environment reclaims the ServletContext.
Objects with application scope can be defined (and reached) from pages that are not session-aware
References to objects with application scope are stored in the application object associated with a page activation
The maximum age of the cookie in JSP can be set by
cookie.setMaxAge(int seconds)
cookie.setMaxAge(float seconds)
cookie.setAgeMax (float seconds)
cookie.setAgeMax (int seconds)