JSP笔试
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
Jsp Web开发考试
---------------------------------------------------------考试说明-------------------------------------------------------------------- 考试总分100分,考试时间为120分钟,题目分为选择题,简答题,机試题三种题型,选择题和简答题填写在答题卡中,机試答案放在文件夹中,文件夹以自己的班级_姓名命名,如(34_张三)
一:选择题
1)在JAVAEE 中,< % =”2 “ + 4 % >将输出()。
a ) 2 + 4
b ) 6
c ) 24
d )不会输出,因为表达式是错误的
2)在JAVAEE MVC 设计模式体系结构中,( )是实现控制器的首选方案。
a ) JavaBean
b ) Servlet
c ) JSP
d ) HTML
e ) XML
3. JAVAEE 中,JSP 表达式语言的语法是()。
a){ EL expression }
b)${ EL expression}
c)@{ EL expression}
d)&{ EL expression}
4 ) JAVAEE 中,如果没有,HttpSevletRequest 类的()方法用于返回与当前请求相关联的会话,如果没有则返回null 。
a)getsession()
b)getsession(true)
c)getSession(false)
d)getSession(null)
5 )在JAVAEE 中,test . jsp 文件中有如下一行代码:
a ) page
b ) request
c ) session
d ) application
6)在JAVAEE 中,下列()语句可以获取页面请求中一个文本框的输入(文本框的名字为title )。
a ) request . getParameter ( “title " ) ;
b ) requestgetAttribute ( “title " ) ;
c ) request . getParameterValues (“title " ) ;
d ) request . getParameters (“titl
e " ) ;
7)在JAVAEE 中,若要在JsP 正确使用标签:
a) x
b) getKing
c) myTags
d) king
8)在JAVAEE 中,在JSP 中想要使用user 包中的user 类,则以下写法正确的是()。
a )
b )
c )
d )
9)JAVAEE 中,HttpSession 接口位于()包中。(选择一项)
a ) javax . servlet
b ) javax . servlet . http
c ) javax . servlet . http . session
d ) javax . servlet . session
10 )在inc.jsp 中包含数行代码与一张图片,现在要创建一个home.jsp ,每次浏览home . jsp时都能够以最快的速度显示inc . jsp 中的所有内容以及home . jsp 自身要显示的内容,应该在home . jsp 中使用的语句是()。
a ) <%@ include file =”inc.jsp”% >
b ) <%@ include page =”inc.jsp” flush =”true” / >
c )
d ) e =”inc.jsp”/ > 11)给定一个JSP 程序源码如下: 在two.jsp 中加入()代码片断可以输出参数location 的值。 a ) b ) c ) <%= request.getAttribute (”location”)%> d ) <% = request.getParameter (“location”)%> 12)在JAVAEE 中,在web.xml 中,有如下代码: 上述代码定义了默认的会话超时时长,时长为30 ( )。 a )毫秒 b )秒 c )分钟 d )小时 13) Jsp2.0 中,下列代码,最后输出的结果是()。 a ) Z-J-X-X,;a&n&d&r&o&i&d b ) ZJXX,android c ) ZJXXandroid d ),a-n-d-r-o-i-d 14 ) 编写welcome . jsp ,要求显示该页面被所有用户浏览过的次数,下列()是正确的JSP 代码片断。 a )<% if ( application.getAttribute(“counter“)==null ) application.setAttribute (“counter“,1) ; else { int count=(Integer)application.getAttribute(“counter“) ; application.setAttribute (“counter“, count+ l ) );}% > 本页面共被访问过<%=application.getAttribute(“counter”)%>次。 b ) < % Integer counter = new Integer(1); if ( application.getAttribute (“counter”) == null ) application.setAttribute (“counter“,counter ) ; else { counter = ( Integer ) application . getAttribute (“counter “) ; application.setAttribute (“counter “, count + 1 ) ;} % > 本页面共被访问过<%=counter . intvalue() % >次。 c ) < jsp:useBean i d =“counter“scop e =“application " class =“java . lang.lnteger "/> 本页面共被访问过<%=counter.inivalue()++%>次. d ) < jsp : useBean id =“counter“scop e =“application“class=“java . lang.Integer“/>