单选题Given this fragment from a Java EE deployment descriptor: 341. 342.java.lang.Throwable  343./mainError.jsp 344. 345. 346.java.lang.ClassCastException  347./castError.jsp 348. If the web application associated with the fragment above throws a ClassCastE

题目
单选题
Given this fragment from a Java EE deployment descriptor: 341. 342.java.lang.Throwable  343./mainError.jsp 344. 345. 346.java.lang.ClassCastException  347./castError.jsp 348. If the web application associated with the fragment above throws a ClassCastException.Which statement is true?()
A

The deployment descriptor is invalid.

B

The container invokes mainError.jsp.

C

The container invokes castError.jsp.

D

Neither mainError.jsp nor castError.jsp is invoked.


相似考题
更多“单选题Given this fragment from a Java EE deployment descriptor: 341. 342.java.lang.Throwable  343./mainError.jsp 344. 345. 346.java.lang.ClassCastException  347./castError.jsp 348. If the web application associated with the fragment above throws a ClassCastE”相关问题
  • 第1题:

    Which two statements are true about the security-related tags in a valid Java EE deployment descriptor?()

    • A、Every  tag must have at least one  tag.
    • B、A  tag can have many  tags.
    • C、A given  tag can apply to only one  tag.
    • D、A given  tag can contain from zero to many  tags.
    • E、It is possible to construct a valid  tag such that,for a given resource,no user rolescan access that resource.

    正确答案:B,E

  • 第2题:

    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

    正确答案:D

  • 第3题:

    Given this fragment from a Java EE deployment descriptor: 124. beta.html 125. alpha.html And this request from a browser:http://www.sun.com/SCWCDtestApp/register Which statement is correct,when the container receives this request?()

    • A、This deployment descriptor is NOT valid.
    • B、The container first looks in the register directory for beta.html.
    • C、The container first looks in the register directory for alpha.html.
    • D、The container first looks for a servlet mapping in the deployment descriptor.

    正确答案:D

  • 第4题:

    Which is true about the web container request processing model?()

    • A、The init method on a filter is called the first time a servlet mapped to that filter is invoked.
    • B、A filter defined for a servlet must always forward control to the next resource in the filter chain.
    • C、Filters associated with a named servlet are applied in the order they appear in the web application deployment descriptor file.
    • D、If the init method on a filter throws an UnavailableException, then the container will make no further attempt to execute it.

    正确答案:C

  • 第5题:

    单选题
    Given this fragment in a servlet: 23.if(req.isUserInRole("Admin")) { 24.// do stuff 25.} And the following fragment from the related Java EE deployment descriptor: 812. 813.Admin 814.Administrator 815. 900. 901.Admin 902.Administrator 903. What is the result?()
    A

    Line 24 can never be reached.

    B

    The deployment descriptor is NOT valid.

    C

    If line 24 executes, the user’s role will be Admin.

    D

    If line 24 executes, the user’s role will be Administrator.

    E

    If line 24 executes the user’s role will NOT be predictable.


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

  • 第6题:

    单选题
    Which is the true choice about the web container request processing model()?
    A

     The init method on a filter is called the first time a servlet mapped to that filter is invoked

    B

     A filter defined for a servlet must always forward control to the next resource in the filter chain.

    C

     Filters associated with a named servlet are applied in the order they appear in the web application deployment descriptor file

    D

     If the init method on a filter throws an UnavailableException, then the container will make no further attempt to execute it


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

  • 第7题:

    单选题
    Which is true about the web container request processing model?()
    A

    The init method on a filter is called the first time a servlet mapped to that filter is invoked.

    B

    A filter defined for a servlet must always forward control to the next resource in the filter chain.

    C

    Filters associated with a named servlet are applied in the order they appear in the web application deployment descriptor file.

    D

    If the init method on a filter throws an UnavailableException, then the container will make no further attempt to execute it.


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

  • 第8题:

    多选题
    You deployed a Java EE Shared Library and want to use it from an application that is also deployed on the same cluster.    Which two manifest attributes must be specified at a minimum with corresponding values in the deployment descriptor of the application that requires?()
    A

    Implementation-Version

    B

    Specification-Version

    C

    Extension-Name

    D

    Specification-Vendor

    E

    Implementation-Vendor


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

  • 第9题:

    单选题
    Given this fragment in a servlet: 23.if(req.isUserInRole("Admin")) { 24.// do stuff 25.} And the following fragment from the related Java EE deployment descriptor: 812. 813.Admin 814.Administrator 815. 900. 901.Admin 902.Administrator 903. What is the result?()
    A

    Line 24 can never be reached.

    B

    The deployment descriptor is NOT valid.

    C

    If line 24 executes, the user’s role will be Admin.

    D

    If line 24 executes, the user’s role will be Administrator.

    E

    If line 24 executes the user’s role will NOT be predictable.


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

  • 第10题:

    单选题
    Which element of the web application deployment descriptor defines the servlet class associated with aservlet instance?()
    A

    <class><br/>

    B

    <webapp><br/>

    C

    <servlet><br/>

    D

    <codebase><br/>

    E

    <servlet-class>


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

  • 第11题:

    单选题
    Which makes the local EJB component accessible to the web components in the web application deployment descriptor?()
    A

    A

    B

    B

    C

    C

    D

    D


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

  • 第12题:

    单选题
    Given this fragment from a Java EE deployment descriptor: 341. 342.java.lang.Throwable  343./mainError.jsp 344. 345. 346.java.lang.ClassCastException  347./castError.jsp 348. If the web application associated with the fragment above throws a ClassCastException.Which statement is true?()
    A

    The deployment descriptor is invalid.

    B

    The container invokes mainError.jsp.

    C

    The container invokes castError.jsp.

    D

    Neither mainError.jsp nor castError.jsp is invoked.


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

  • 第13题:

    Which is the true choice about the web container request processing model()?

    • A、 The init method on a filter is called the first time a servlet mapped to that filter is invoked
    • B、 A filter defined for a servlet must always forward control to the next resource in the filter chain.
    • C、 Filters associated with a named servlet are applied in the order they appear in the web application deployment descriptor file
    • D、 If the init method on a filter throws an UnavailableException, then the container will make no further attempt to execute it

    正确答案:C

  • 第14题:

    Given this fragment from a Java EE deployment descriptor: 341. 342.java.lang.Throwable  343./mainError.jsp 344. 345. 346.java.lang.ClassCastException  347./castError.jsp 348. If the web application associated with the fragment above throws a ClassCastException.Which statement is true?()

    • A、The deployment descriptor is invalid.
    • B、The container invokes mainError.jsp.
    • C、The container invokes castError.jsp.
    • D、Neither mainError.jsp nor castError.jsp is invoked.

    正确答案:C

  • 第15题:

    Which element of the web application deployment descriptor defines the servlet class associated with aservlet instance?()

    • A、<class><br/>
    • B、<webapp><br/>
    • C、<servlet><br/>
    • D、<codebase><br/>
    • E、<servlet-class>

    正确答案:E

  • 第16题:

    You deployed a Java EE Shared Library and want to use it from an application that is also deployed on the same cluster.    Which two manifest attributes must be specified at a minimum with corresponding values in the deployment descriptor of the application that requires?()

    • A、Implementation-Version
    • B、Specification-Version
    • C、Extension-Name  
    • D、Specification-Vendor
    • E、Implementation-Vendor

    正确答案:A,C

  • 第17题:

    单选题
    Which element is the parent of the  tag in the web application deployment descriptor? ()
    A

     <web-app> 

    B

     <filters> 

    C

     <servlet> 

    D

     <filter-list> 


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

  • 第18题:

    多选题
    Which the three interfaces need to be declared in the web application deployment descriptor? ()
    A

    HttpSessionListener

    B

    HttpSessionBindingListener

    C

    HttpSessionTimedOutListener

    D

    HttpSessionAttributeListener

    E

    HttpSessionActivationListener

    F

    HttpSessionPassivatedListener


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

  • 第19题:

    单选题
    Given the element from the web application deployment descriptor: /main/page1.jsp true and given that /main/page1.jsp contains:   What is the result?()
    A

    <b></b>

    B

    <b>12</b>

    C

    The JSP fails to execute.

    D

    <% int i = 12 %><b><%= i %></b>


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

  • 第20题:

    单选题
    What is the name of the WebLogic specific deployment descriptor of Java Enterprise Application?()
    A

    application.xml

    B

    weblogic.xml

    C

    web.xml

    D

    weblogic-application.xml

    E

    config.xml


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

  • 第21题:

    单选题
    Given this fragment from a Java EE deployment descriptor: 341. 342.java.lang.Throwable  343./mainError.jsp 344. 345. 346.java.lang.ClassCastException  347./castError.jsp 348. If the web application associated with the fragment above throws a ClassCastException.Which statement is true?()
    A

    The deployment descriptor is invalid.

    B

    The container invokes mainError.jsp.

    C

    The container invokes castError.jsp.

    D

    Neither mainError.jsp nor castError.jsp is invoked.


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

  • 第22题:

    单选题
    Within the web application deployment descriptor, which defines a valid JNDI environment entry()
    A

    A

    B

    B

    C

    C

    D

    D


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

  • 第23题:

    单选题
    Which defines the welcome files in a web application deployment descriptor?()
    A

    A

    B

    B

    C

    C

    D

    D

    E

    E


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

  • 第24题:

    单选题
    Given this fragment from a Java EE deployment descriptor: 124. beta.html 125. alpha.html And this request from a browser:http://www.sun.com/SCWCDtestApp/register Which statement is correct,when the container receives this request?()
    A

    This deployment descriptor is NOT valid.

    B

    The container first looks in the register directory for beta.html.

    C

    The container first looks in the register directory for alpha.html.

    D

    The container first looks for a servlet mapping in the deployment descriptor.


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