问题:
Which code snippet, inserted at line 8, causes the value Company to be output?()
A . JspWriter w = pageContext.getOut();w.print(“Company”);
B . JspWriter w = pageContext.getWriter();w.print(“Company”);
C . JspWriter w = new JspWriter(pageContext.getOut()); w.print(“Company”);
D . JspWriter w = new JspWriter (pageContext.getResponse()); w.print(“Company”);
Which code snippet, inserted at line 8, causes the value Company to be output?()
● 参考解析
本题暂无解析