网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

Given: 11. 12.catalog 13./catalogTemplate.jsp 14.10 15. Which two are true?()

  • A、Line 13 is not valid for a servlet declaration.
  • B、Line 14 is not valid for a servlet declaration.
  • C、One instance of the servlet will be loaded at startup.
  • D、Ten instances of the servlet will be loaded at startup.
  • E、The servlet will be referenced by the name catalog in mappings.

参考答案

更多 “ Given: 11. 12.catalog 13./catalogTemplate.jsp 14.10 15. Which two are true?()A、Line 13 is not valid for a servlet declaration.B、Line 14 is not valid for a servlet declaration.C、One instance of the servlet will be loaded at startup.D、Ten instances of the servlet will be loaded at startup.E、The servlet will be referenced by the name catalog in mappings.” 相关考题
考题 在J2EE中,对于自己编写的Servlet1,以下对Servlet1的定义正确的是()。 A.classServlet1implementsjavax.servlet.ServletB.classServlet1extendsjavax.servlet.GenericServletC.classServlet1extendsjavax.servlet.http.HttpServletD.classServlet1extendsjavax.servlet.ServletRequest

考题 WhichtwoclassesorinterfacesprovideagetSessionmethod?() A.javax.servlet.http.HttpServletRequestB.javax.servlet.http.HttpSessionContextC.javax.servlet.http.HttpsServletResponseD.javax.servlet.http.HttpSessionBindingEventE.javax.servlet.http.HttpSessionAttributeEvent

考题 Whichinterfacemustaclassimplementtobeinformedofasessioncreationevent?() A.javax.servlet.http.HttpSessionListenerB.javax.servlet.http.HttpSessionBindingListenerC.javax.servlet.http.HttpSessionCreationListenerD.javax.servlet.http.HttpSessionActivationListener

考题 Given:11.servlet12.servlet-namecatalog/servlet-name13.jsp-file/catalogTemplate.jsp/jsp-file14.load-on-startup10/load-on-startup15./servletWhichtwoaretrue?()A.Line13isnotvalidforaservletdeclaration.B.Line14isnotvalidforaservletdeclaration.C.Oneinstanceoftheservletwillbeloadedatstartup.D.Teninstancesoftheservletwillbeloadedatstartup.E.Theservletwillbereferencedbythenamecataloginmappings.

考题 下列哪种情况会导致servlet中的destroy()方法被调用。 A.web应用被终止B.Servlet容器终止运行C.Servlet容器重新装载Servlet新实例D.servlet出现闲置

考题 下列选项描述正确的是()。 A、 在servlet-mapping中的url-patten表示用户请求访问Servlet的URL B、 Servlet容器会根据servlet-class查找到与其对应的servlet-name C、 servlet中的servlet-name内容与servlet-mapping中的servlet-name内容可以不一致 D、 以上描述都不正确

考题 Which two prevent a servlet from handling requests.?()A、 The servlet’s init method returns a non-zero status.B、 The servlet’s init method throws a Servlet ExceptionC、 The servlet’s init method sets the Servlet Response’s context length to 0D、 The servlet’s init method sets the Servlet Response’s content type to null.E、 The servlet’s init method does NOT return within a time period defined by the servlet container.

考题 Which two classes or interfaces provide a getSession method?()A、 javax.servlet.http.HttpServletRequestB、 javax.servlet.http.HttpSessionContextC、 javax.servlet.http.HttpsServletResponseD、 javax.servlet.http.HttpSessionBindingEventE、 javax.servlet.http.HttpSessionAttributeEvent

考题 以下描述JSP与Servlet的关系,正确的有()A、jsp最后会编译成servlet来执行B、MVC中Servlet做C、jsp做VC、Servlet在代码中输出htmlD、JSP和Servlet都是解释执行E、JSP是编译执行,而Servlet是解释执行

考题 在web.xml文件中,描述了一个Servlet,其中()指定了Servlet类的访问路径。A、 servlet中的servlet-name B、url-pattrrn C、 WEB-INF文件夹servlet-class   D、 servlet-mapping中的servlet-name

考题 下面关于Servlet生命周期的描述不正确的是()。A、 Servlet实例由Servlet容器负责加载和创建B、 Servlet容器调用init()方法初始化Servlet,每加载一次Servlet都会执行一次init()方法C、 Servlet初始化完毕后,就处于能响应请求的就绪状态D、 Servlet的destroy()方法指明哪些资源可以被系统回收

考题 哪个节点被用于配置Servlet的定义。()A、〈servlet〉B、〈class〉C、〈servlet-name〉D、〈mapping〉

考题 servlet API由多个包组成,主要包括()。A、javax.servletB、javax.servlet.httpC、javax.servlet.ServletRequestD、javax.servlet.ServletResponse

考题 以下哪些是会话事件的监听API()。A、javax.servlet.ServletContextListenerB、javax.Servlet.servletContextAttributeListenerC、javax.servlet.http.HttpWebSessionListenerD、javax.servlet.http.HttpSessionBindingListener

考题 Servlet的生命周期接口由下列哪个对象定义?()A、javax.servlet.http.HttpServletB、javax.servlet.http.HttpSessionC、javax.servlet.ServletD、javax.servlet.Session

考题 Given the HttpServlet code:   getServletContext().setAttribute(“foo”, “value”); What is the result?()A、 The attribute foo is placed in the applicationB、 A ServletContextListener registered for that servlet is notifiedC、 A ServletAttributeListener registered for that servlet is notifiedD、 An HttpSessionAttributeListener registered for that servlet is notified

考题 多选题Given: 11. 12.catalog 13./catalogTemplate.jsp 14.10 15. Which two are true?()ALine 13 is not valid for a servlet declaration.BLine 14 is not valid for a servlet declaration.COne instance of the servlet will be loaded at startup.DTen instances of the servlet will be loaded at startup.EThe servlet will be referenced by the name catalog in mappings.

考题 多选题Given: 11. 12.catalog 13./catalogTemplate.jsp 14.10 15. Which two are true?()ALine 13 is not valid for a servlet declaration.BLine 14 is not valid for a servlet declaration.COne instance of the servlet will be loaded at startup.DTen instances of the servlet will be loaded at startup.EThe servlet will be referenced by the name catalog in mappings.

考题 单选题在web.xml文件中,描述了一个Servlet,其中()指定了Servlet类的访问路径。A  servlet中的servlet-name B url-pattrrn C  WEB-INF文件夹servlet-class   D  servlet-mapping中的servlet-name

考题 多选题在J2EE中,对于自己编写的Servlet1,以下对Servlet1的定义正确的是()。Aclass Servlet1 implements javax.servlet.ServletBclass Servlet1 extends javax.servlet.GenericServletCclass Servlet1 extends javax.servlet.http.HttpServletDclass Servlet1 extends javax.servlet.ServletRequest

考题 单选题Servlet A forwarded a request to servlet B using the forward method of RequestDispatcher. What attributein B’s request object contains the URI of the original request received by servlet A?()A REQUEST_URIB javax.servlet.forward.request_uriC javax.servlet.forward.REQUEST_URID javax.servlet.request_dispatcher.request_uriE javax.servlet.request_dispatcher.REQUEST_URI

考题 多选题Which two classes or interfaces provide a getSession method?()Ajavax.servlet.http.HttpServletRequestBjavax.servlet.http.HttpSessionContextCjavax.servlet.http.HttpsServletResponseDjavax.servlet.http.HttpSessionBindingEventEjavax.servlet.http.HttpSessionAttributeEvent

考题 多选题Which two prevent a servlet from handling requests.?()AThe servlet’s init method returns a non-zero status.BThe servlet’s init method throws a Servlet ExceptionCThe servlet’s init method sets the Servlet Response’s context length to 0DThe servlet’s init method sets the Servlet Response’s content type to null.EThe servlet’s init method does NOT return within a time period defined by the servlet container.

考题 单选题Given the HttpServlet code:   getServletContext().setAttribute(“foo”, “value”); What is the result?()A  The attribute foo is placed in the applicationB  A ServletContextListener registered for that servlet is notifiedC  A ServletAttributeListener registered for that servlet is notifiedD  An HttpSessionAttributeListener registered for that servlet is notified

考题 单选题下列选项描述正确的是()。A  在servlet-mapping中的url-patten表示用户请求访问Servlet的URL B  Servlet容器会根据servlet-class查找到与其对应的servlet-name C  servlet中的servlet-name内容与servlet-mapping中的servlet-name内容可以不一致 D  以上描述都不正确

考题 单选题Servlet的生命周期接口由下列哪个对象定义?()A javax.servlet.http.HttpServletB javax.servlet.http.HttpSessionC javax.servlet.ServletD javax.servlet.Session

考题 多选题以下哪些是会话事件的监听API()。Ajavax.servlet.ServletContextListenerBjavax.Servlet.servletContextAttributeListenerCjavax.servlet.http.HttpWebSessionListenerDjavax.servlet.http.HttpSessionBindingListener

考题 多选题servlet API由多个包组成,主要包括()。Ajavax.servletBjavax.servlet.httpCjavax.servlet.ServletRequestDjavax.servlet.ServletResponse