Which two JSTL URL related tags perform URL rewriting?
a)url
b)link
c)param
d)import
e)redirect
a) is one what is the other?
<%
request.setAttribute("vals",new
String[]{"1","2","3","4"});
request.setAttribute("index","2");
%>
which 3 EL expressions are valid and evaluate to "3"?
a)${vals["2"]}
b)${vals.index}
c)${vals[index]}
d)${vals.(vals.index)}
e)${vals[vals[index-1]]}
f)${vals}[index]
thanks in advance