JDBC, Java Server Pages, and MySQL - Technical MCQs

Q1:

How many copies of a JSP page can be in memory at a time?

A One

B Two

C Three

D Unlimited

ANS:A - One

When the user requests a JSP page for the first time, A JSP converts into servlet. In this time a JSP's jspInit() method is called only once in its life time.So only one copy of JSP page in memory at a time.