网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
单选题
Which implicit object is used in a JSP page to retrieve values associated with entries inthe deployment descriptor?()
A
Config
B
Request
C
Session
D
Application
参考答案
参考解析
解析:
暂无解析
更多 “单选题Which implicit object is used in a JSP page to retrieve values associated with entries inthe deployment descriptor?()A ConfigB RequestC SessionD Application” 相关考题
考题
Given a JSP error page, which implicit object refers to the uncaught Throwable that resulted in th epage being invoked?()A、 ErrorB、 ExceptionC、 ThrowableD、 Request errorE、 Request exception
考题
Your web page includes a Java SE v1.5 applet with the following declaration: 11. 13. 14. Which HTTP method is used to retrieve the applet code?()A、GETB、PUTC、POSTD、RETRIEVE
考题
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、 idB、 typeC、 nameD、 classE、 scopeF、 create
考题
Which JSP standard action can be used to import content from a resource called foo.jsp?()A、jsp:import file=’foo.jsp’ /B、jsp:import page=’foo.jsp’ /C、jsp:include page=’foo.jsp’ /D、jsp:include file=’foo.jsp’ /
考题
Which three occur during JSP page translation?()A、 The jspInit method is called.B、 The JSP page implementation class is created.C、 The JSP page implementation class is compiled.D、 The JSP page is validated for syntatic correctness.E、 The associated tag files are validated for syntatic correctness.
考题
You need to create a JavaBean object that is used only within the current JSP page. It must NOT beaccessible to any other page including those that this page might import. Which JSP standard action canaccomplish this goal?()A、jsp:useBean id=’pageBean’ type=’com.example.MyBean’ /B、jsp:useBean id=’pageBean’ class=’com.example.MyBean’ /C、jsp:makeBean id=’pageBean’ type=’com.example.MyBean’ /D、jsp:makeBean id=’pageBean’ class=’com.example.MyBean’ /
考题
Which the two are concerning the objects available to developers creating tag files?()A、 The session object must be declared explicity.B、 The request and response objects are available implicity.C、 The output stream is available through the implicit outStream object.D、 The servlet context is available through the implicit servletContext object.E、 The JspContext for the tag file is available through the implicit jspContext object.
考题
You have built your own light-weight templating mechanism. Your servlets, which handle each request,dispatch the request to one of a small set of template JSP pages. Each template JSP controls the layout ofthe view by inserting the header, body, and footer elements into specific locations within the template page.The URLs for these three elements are stored in request scoped variables called, headerURL, bodyURL,and footerURL, respectively. These attribute names are never used for other purposes. Which JSP codesnippet should be used in the template JSP to insert the JSP content for the body of the page?()A、jsp:insert page=’${bodyURL}’ /B、jsp:insert file=’${bodyURL}’ /C、jsp:include page=’${bodyURL}’ /D、jsp:include file=’${bodyURL}’ /E、jsp:insert page=’%= bodyURL %’ /
考题
You are building your own layout mechanism by including dynamic content for the page’s header and footersections. The footer is always static, but the header generates the tag that requires the page name tobe specified dynamically when the header is imported. Which JSP code snippet performs the import of theheader content?() titleA、jsp:include page=’/WEB-INF/jsp/header.jsp’jsp:param name=’pageName’ value=’Welcome Page’ / /jsp:includeB、jsp:import page=’/WEB-INF/jsp/header.jsp’jsp:param name=’pageName’ value=’Welcome Page’ / /jsp:importC、jsp:include page=’/WEB-INF/jsp/header.jsp’jsp:attribute name=’pageName’ value=’Welcome Page’ / . /jsp:includeD、jsp:import page=’/WEB-INF/jsp/header.jsp’. jsp:attribute name=’pageName’ value=’Welcome Page’ / . /jsp:import
考题
A session-scoped attribute is stored by a servlet, and then that servlet forwards to a JSP page. Which threejsp:useBean attributes must be used to access this attribute in the JSP page?()A、idB、nameC、beanD、typeE、scope
考题
Which the JSTL code snippet can be used to import content from another web resource?()A、 c:import url=*foo.jsp”/ B、 c:import page=*foo.jsp”/ C、 c:include url=*foo.jsp”/ D、 c:include page=*foo.jsp”/ E、 Importing cannot be done in JSTL. A standard action must be used instead.
考题
A JSP page needs to set the property of a given JavaBean to a value that is calculated with the JSP page. Which three jsp:setProperty attributes must be used to perform this initialization?()A、IdB、ValC、NameD、ParamE、ValueF、Property
考题
The JSP developer wants a comment to be visible in the final output to the browser. Which comment styleneeds to be used in a JSP page?()A、!-- this is a comment --B、% // this is a comment %C、%-- this is a comment --%D、% /** this is a comment **/ %
考题
多选题A session-scoped attribute is stored by a servlet, and then that servlet forwards to a JSP page. Which threejsp:useBean attributes must be used to access this attribute in the JSP page?()AidBnameCbeanDtypeEscope
考题
单选题Which JSP standard action can be used to import content from a resource called foo.jsp?()A
jsp:import file=’foo.jsp’ /B
jsp:import page=’foo.jsp’ /C
jsp:include page=’foo.jsp’ /D
jsp:include file=’foo.jsp’ /
考题
多选题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?()AidBtypeCnameDclassEscopeFcreate
考题
单选题Given a JSP error page, which implicit object refers to the uncaught Throwable that resulted in th epage being invoked?()A
ErrorB
ExceptionC
ThrowableD
Request errorE
Request exception
考题
多选题Which the two are concerning the objects available to developers creating tag files?()AThe session object must be declared explicity.BThe request and response objects are available implicity.CThe output stream is available through the implicit outStream object.DThe servlet context is available through the implicit servletContext object.EThe JspContext for the tag file is available through the implicit jspContext object.
考题
单选题Which JSTL code snippet can be used to import content from another web resource?()A
c:import url=foo.jsp/B
c:import page=foo.jsp/C
c:include url=foo.jsp/D
c:include page=foo.jsp/
考题
单选题In a JSP-centric web application, you need to create a catalog browsing JSP page. The catalog is stored asa List object in the catalog attribute of the webapp’s ServletContext object. Which scriptlet code snippetgives you access to the catalog object?()A
% List catalog = config.getAttribute(catalog); %B
% List catalog = context.getAttribute(catalog); %C
% List catalog = application.getAttribute(catalog); %D
% List catalog = servletContext.getAttribute(catalog); %
考题
单选题The JSP developer wants a comment to be visible in the final output to the browser. Which comment styleneeds to be used in a JSP page?()A
!-- this is a comment --B
% // this is a comment %C
%-- this is a comment --%D
% /** this is a comment **/ %
考题
单选题Your web page includes a Java SE v1.5 applet with the following declaration: 11. 13. 14. Which HTTP method is used to retrieve the applet code?()A
GETB
PUTC
POSTD
RETRIEVE
考题
单选题You need to create a JavaBean object that is used only within the current JSP page. It must NOT beaccessible to any other page including those that this page might import. Which JSP standard action canaccomplish this goal?()A
jsp:useBean id=’pageBean’ type=’com.example.MyBean’ /B
jsp:useBean id=’pageBean’ class=’com.example.MyBean’ /C
jsp:makeBean id=’pageBean’ type=’com.example.MyBean’ /D
jsp:makeBean id=’pageBean’ class=’com.example.MyBean’ /
考题
单选题You have built your own light-weight templating mechanism. Your servlets, which handle each request,dispatch the request to one of a small set of template JSP pages. Each template JSP controls the layout ofthe view by inserting the header, body, and footer elements into specific locations within the template page.The URLs for these three elements are stored in request scoped variables called, headerURL, bodyURL,and footerURL, respectively. These attribute names are never used for other purposes. Which JSP codesnippet should be used in the template JSP to insert the JSP content for the body of the page?()A
jsp:insert page=’${bodyURL}’ /B
jsp:insert file=’${bodyURL}’ /C
jsp:include page=’${bodyURL}’ /D
jsp:include file=’${bodyURL}’ /E
jsp:insert page=’%= bodyURL %’ /
考题
单选题Which the JSTL code snippet can be used to import content from another web resource?()A
c:import url=*foo.jsp”/ B
c:import page=*foo.jsp”/ C
c:include url=*foo.jsp”/ D
c:include page=*foo.jsp”/ E
Importing cannot be done in JSTL. A standard action must be used instead.
考题
多选题A JSP page needs to set the property of a given JavaBean to a value that is calculated with the JSP page. Which three jsp:setProperty attributes must be used to perform this initialization?()AIdBValCNameDParamEValueFProperty
考题
多选题A JSP page needs to instantiate a JavaBean to be used by only that page. Which two jsp:useBeanattributes must be used to access this attribute in the JSP page?()AIdBTypeCNameDClassEYscope
热门标签
最新试卷