which of the following useBean actions allow us to locate an existing bean object of MyBean class having the id theBean in the current session without creating a new instance if an existing instance is not available? select one chice.
Options:
1. <
jsp:useBean id="theBean" type="MyBean" scope="session" />
2. <jsp:useBean id="theBean" class="MyBean" scope="session" />
3. <jsp:useBean id="theBean" beanName="MyBean" type="MyBean" scope="session" />
4. <jsp:useBean id="theBean" class="MyBean" type="MyBean" scope="session" />
without creating a new instance if an existing instance is not available?
This part of the question is pretty unclear to me. I appreciate if any one can explain it to me.