多选题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

题目
多选题
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?()
A

Id

B

Type

C

Name

D

Class

E

Yscope


相似考题
更多“A JSP page needs to instantiate a JavaBean to be used by onl”相关问题
  • 第1题:

    A JSP page needs to perform some operations before servicing the first request. Where can this be done?()

    • A、 within a method called jspInit
    • B、 within the page directive of the JSP page
    • C、 within a scriptlet at the top of the JSP page
    • D、 within the  XML element

    正确答案:A

  • 第2题:

    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’ />

    正确答案:B

  • 第3题:

    在JSP中调用JavaBean时不会用到的标记是()。

    • A、〈javabean〉
    • B、〈jsp:useBean〉
    • C、〈jsp:setProperty〉
    • D、〈jsp:getProperty〉

    正确答案:A

  • 第4题:

    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 %>’ />

    正确答案:C

  • 第5题:

    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

  • 第6题:

    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

  • 第7题:

    多选题
    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

    id

    B

    name

    C

    bean

    D

    type

    E

    scope


    正确答案: B,D
    解析: 暂无解析

  • 第8题:

    单选题
    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’ />


    正确答案: D
    解析: 暂无解析

  • 第9题:

    单选题
    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/>


    正确答案: C
    解析: 暂无解析

  • 第10题:

    单选题
    JSP中JavaBean是通过指令标签()来访问的。
    A

    〈%@ page%〉

    B

    〈jsp:useBean〉

    C

    〈jsp:setProperty〉

    D

    〈jsp:getProperty〉


    正确答案: C
    解析: 暂无解析

  • 第11题:

    单选题
    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 %>’ />


    正确答案: E
    解析: 暂无解析

  • 第12题:

    多选题
    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

    Id

    B

    Val

    C

    Name

    D

    Param

    E

    Value

    F

    Property


    正确答案: C,B
    解析: 暂无解析

  • 第13题:

    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’ />

    正确答案:C

  • 第14题:

    MVC中的MVC分别用()、()、()表示。

    • A、jsp;servlet;javabean
    • B、HTml;javabean;jsp
    • C、javabean;jsp;servlet
    • D、servlet;html;jsp

    正确答案:C

  • 第15题:

    JSP开发网站的两种模式分为jsp+javabean和jsp+javabean+servlet。


    正确答案:正确

  • 第16题:

    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、id
    • B、name
    • C、bean
    • D、type
    • E、scope

    正确答案:A,D,E

  • 第17题:

    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、Id
    • B、Val
    • C、Name
    • D、Param
    • E、Value
    • F、Property

    正确答案:C,E,F

  • 第18题:

    单选题
    在JSP页面中,正确引入JavaBean的是()
    A

    <%jsp: useBean id =”myBean” scope =”page” class=”pkg.MyBean” %>  

    B

    <jsp: useBean name=”myBean” scope =”page” class=”pkg.MyBean” >  

    C

    <jsp: useBean id =”myBean” scope =”page” class=”pkg.MyBean” /> 

    D

    <jsp: useBean name=”myBean” scope =”page” class=”pkg.MyBean” />


    正确答案: D
    解析: 暂无解析

  • 第19题:

    单选题
    A JSP page needs to perform some operations before servicing the first request. Where can this be done?()
    A

     within a method called jspInit

    B

     within the page directive of the JSP page

    C

     within a scriptlet at the top of the JSP page

    D

     within the  XML element


    正确答案: A
    解析: 暂无解析

  • 第20题:

    多选题
    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


    正确答案: D,A
    解析: 暂无解析

  • 第21题:

    单选题
    在JSP中调用JavaBean时不会用到的标记是()。
    A

    〈javabean〉

    B

    〈jsp:useBean〉

    C

    〈jsp:setProperty〉

    D

    〈jsp:getProperty〉


    正确答案: C
    解析: 暂无解析

  • 第22题:

    单选题
    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’ />


    正确答案: D
    解析: 暂无解析

  • 第23题:

    单选题
    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.


    正确答案: C
    解析: 暂无解析

  • 第24题:

    多选题
    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?()
    A

    Id

    B

    Type

    C

    Name

    D

    Class

    E

    Yscope


    正确答案: D,B
    解析: 暂无解析