多项选择题
A JSP page needs to instantiate a JavaBean to be used by only that page. Which two jsp:useBean attributes must be used to access this attribute in the JSP page?()
A. id
B. type
C. name
D. class
E. scope
F. create
相关考题
-
单项选择题
ForagivenServletResponseresponse,whichretrievesanobjectforwritingbinarydata?()
A. response.getWriter()
B. response.getOutputStream()
C. response.getOutputWriter()
D. response.getWriter().getOutputSTream()
E. response.getWriter(Writer.OUTPUT_BINARY) -
单项选择题
Which theHTTPmethodrepresentsarequestforinformationaboutthesupportedmethodsonanHTTPserver?()
A. GET
B. INFO
C. HEAD
D. TRACE
E. OPTIONS -
单项选择题
GivenanHttpServletRequestrequest,whichretrievesanobjectoftypeAccountwithanIdof“account”?()
A. Account account = request.get Resource(”account”):
B. Account account = request.get Attribute (“account”):
C. Account account = request.get Parameter (account”):
D. Account account = (Account)request.getResource (“account”):
E. Account account = (Account) request.get Attribute (“account”):
F. Account account = (Account) request.get Paramter (“account”):
