source is jdiscuss mock.
Which of the given statements are correct regarding the following
JSP page code?
<jsp:useBean id="mystring" class="java.lang.String" />
<jsp:setProperty name="mystring" property="*" />
<%=mystring%>
Assume that the request for this page contains a parameter mystring=hello.
What is the output:
Correct answer is : It will print "".
But I think : It will print "hello".
What is your view on this question.