Please give the solution
Hi everybody,
Please give the solution if you have with explanation.
Given the web application deployment descriptor.....
<jsp-config>
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<scripting-invalid>false</scripting-invalid>
</jsp-property-group>
</jsp-config>
and example.jsp:
10X5=${10*5}
2*3=<%=2*3%>
What is the result?

