(Choose 1 answer)
public class TestTag extends TagSupport
{
public int doStartTag() throws JspException {
return EVAL_PAGE;}
public int doEndTag() throws JspException{return SKIP_PAGE;}
}
Assume *.tld and web.xml files are correct.
A. START END
B. START
C. END
D. END START