Archive for Fresher interview Question on JSP

You are browsing the archives of Fresher interview Question on JSP.

Java- Advanced interview questions on JSP

1. What are the implicit objects?
- Implicit objects are objects that are created by the web container and contain information related to a particular request, page, or application. They are: request, response, pageContext, session, application, out, config, page, exception.
2. Is JSP technology extensible?
- Yes. JSP technology is extensible through the development of custom actions, [...]

Java- Interview questionson JSP for freshers

Web development interview questions
1. Can we use the constructor, instead of init(), to initialize servlet?
- Yes , of course you can use the constructor instead of init(). There’s nothing to stop you. But you shouldn’t. The original reason for init() was that ancient versions of Java couldn’t dynamically invoke constructors with arguments, so there was [...]