What is the output of from the below JSP code? <jsp:useBean id="name" class="java.lang.String" /> <%= name %>
I think answer will be nothing (empty string), because it is equivalent to -- String name = new String(); System.out.println(name); name is not assigned to any string value, hence its value will be empty string...