所屬科目:OCE
105 Refer to the Exhibit. Assuming the tag library in the exhibit is imported with the prefix forum, which custom tag invocation procedures a transaction error in a jsp page? (A) <forum:message from="My Name" subject="My Subject" /> (B) <forum:message subject="My Subject">My message body.</forum:message> (C) <forum:message from="My Name" subject="${param.subject}">${param.body}</forum:message> (D) <forum:message from="My Name" subject="My Subject"><%= request.getParameter( "body" ) %></forum:message> (E) <forum:message from="My Name"subject="<%= request.getParameter( "subject" ) %>">My message body.</forum:message>
112 View the exhibit. Assume the tag library in the exhibit is placed in a web application in the path /WEBINF/tld/example.tld.1.2. <ex:hello /> Which JSP code, inserted at line 1, completes the JSP code to invoke the hello tag? (A) <%@ taglib prefix="ex" uri="/WEB-INF/tld" %> (B) <%@ taglib uri="/WEB-INF/tld/example.tld" %> (C) <%@ taglib prefix="ex"uri:="http://localhost:8080/tld/example.tld" % > (D) <%@ taglib prefix="ex"uri:="http://example.com/tld/example" % >
131 View the Exhibit. Which two technologies would be suitable for use as Front Controller elements? (Choose two) (A) JSP (B) Servlet (C) Filter (D) POJO (E) Custom Tag