Interview Tutorials

51. Question: What is a Hidden Comment in JSP?

By: Guru Singh : 2008-08-24

Description: A comment that documents the JSP page but is not sent to the client. The JSP engine ignores a hidden comment, and does not process any code within hidden comment tags. A hidden comment is not sent to the client, either in the displayed JSP page or the HTML page source. The hidden comment is useful when you want to hide or "comment out" part of your JSP page.


52. Question: What is an output comment in JSP?

By: Guru Singh : 2008-08-24

Description: A comment that is sent to the client in the viewable page source.The JSP engine handles an output comment as uninterpreted HTML text, returning the comment in the HTML output sent to the client. You can see the comment by viewing the page source from your Web browser.


53. Question: Explain the life-cycle methods in JSP?

By: Guru Singh : 2008-08-24

Description: The generated servlet class for a JSP page implements the HttpJspPage interface of the javax.servlet.jsp package. The HttpJspPage interface extends the JspPage interface which inturn extends the Servlet interface of the javax.servlet package. The generated servlet class thus implements all the methods of these three interfaces. The JspPage interface declares only two mehtods - jspInit() and jspDestroy() that must be implemented by all JSP pages regardless of the client-server protocol. However the JSP specification has provided the HttpJspPage interfaec specifically for the JSp pages serving HTTP requests. This interface declares one method _jspService().


54. Question: What is the directory structure of a web application?

By: Guru Singh : 2008-08-24

Description: The directory structure of a web application consists of two parts.


55. Question: How is the MVC design pattern used in Struts framework?

By: Guru Singh : 2008-08-24

Description: In the MVC design pattern, a central Controller mediates application flow. The Controller delegates requests to an appropriate handler. The handlers are tied to a Model, and each handler acts as an adapter between the request and the Model. The Model represents, or encapsulates, an application's business logic or state. Control is usually then forwarded back through the Controller to the appropriate View.


56. Question: How would you go about analyzing performance of an application?

By: Praveen : 2008-08-24

Description: When performance testing a Web application, several requirements must be


57. Getting started with Interview

By: Vilyams : 2008-08-14

Description: The mere fact that you are reading this article is a proof that you are looking for your first Job or a change of Job. You have probably read many other articles about preparing for and facing an interview and you are already overwhelmed with a wealth of information. Hence I will stick to the point and keep this short.


58. Types of Interviews

By: Vilyams : 2008-08-14

Description: A common type of job interview in the modern workplace is the behavioral interview or behavioral event interview. In this sort of interview, the interviewers tend to ask questions about general situations, with the candidate asked to describe how they handled a specific problem. Typical behavioural interview questions:


59. Interview Question: What is Struts?

By: Ash : 2008-08-13

Description: Struts is a web page development framework and an open source software that helps developers build web applications quickly and easily. Struts combines Java Servlets, Java Server Pages, custom tags, and message resources into a unified framework. It is a cooperative, synergistic platform, suitable for development teams, independent developers, and everyone between.


60. Interview Question: How is the MVC design pattern used in Struts framework?

By: Ash : 2008-08-13

Description: In the MVC design pattern, application flow is mediated by a central Controller. The Controller delegates requests to an appropriate handler. The handlers are tied to a Model, and each handler acts as an adapter between the request and the Model. The Model represents, or encapsulates, an application's business logic or state. Control is usually then forwarded back through the Controller to the appropriate View. The forwarding can be determined by consulting a set of mappings, usually loaded from a database or configuration file. This provides a loose coupling between the View and Model, which can make an application significantly easier to create and maintain.