JSP复习题2含答案
合集下载
相关主题
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
D、http://localhost:8080/helloapp/hello
参考答案: C
5、
下面不属于Servlet生命周期阶段的是( )
public void service(HttpServletRequest req,HttpServletResponse
res)
throws ServletException,IOException{
Res.setContentType(“text/html”);
PrintWriter out=res.getWriter();
Out.println(“<html>”);
Out.println(“<body>”);
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
public class HelloServlet extendsession().setTimeout(1800);
B、request.getSession().setTimeout(30)
C、request.getSession().setMaxInactiveInterval(1800);
C、25
D、1433
参考答案: A
4、
假设在helloapp应用中有一个hello.jsp,文件路径为C:/Tomcat/webapps/helloapp/hello/hello.jsp那么在浏览器端访问hello.jsp的URL是(
8、
给定如下Servlet代码,假定在浏览器中输入URL:http://localhost:8080/servlet/HelloServlet,可以调用该servlet,那么该Servlet的输出是(
)
2、
HTTP协议中,请求消息使用( )方法用于通过Internet发送大量数据。
A、get
B、post
C、put
PrintWriter out=response.getWriter();
out.println(“hello!”);
}
}
A、编译该文件时会提示缺少doGet()或者doPost()方法,编译不能够成功通过
}
Public void doPost(HttpServletRequest req,HttpServletResponse
res)
Throws ServletException,IOException{
D、编译后, 把Servletl.class放在正确位置,运行该Servlet,在浏览器中会看到运行期错误信息
参考答案: B
7、
ServletContext对象的作用是( )
request,Httpservletresponse response)
{
_________
}
要把session的失效时间设为30分钟,应该在下划线处插入( )
B、编译后,把Servletl.class放在正确位置,运行该Servlet,在浏览器中会看到输出文字:hello!
C、编译后,把Servletl.class放在正确位置,运行该Servlet,在浏览器中会看不到任何输出的文字
A、只需要在Web服务器而不是在每一个客户端上部署、修改应用程序
B、访问范围更广
C、更加容易被访问
D、访问速度更快
参考答案: D
D、head
参考答案: B
3、
浏览Web网页服务默认的端口号是( )
A、80
B、8181
D、putSession();
参考答案: A
10、
给定某servlet 程序的片段,如下:
Public void doGet(HttpServletRequest
)
A、http://localhost:8080/hello.jsp
B、http://localhost:8080/helloapp/hello.jsp
C、http://localhost:8080/helloapp/hello/hello.jsp
在J2EE中,给定某Servlet的代码如下,编译运行该文件,以下陈述正确的是( )
public class Servletl extends HttpServlet{
public void init() throws ServletException{
}
Public void doGet(HttpServletRequest req,HttpServletResponse
res)
Throws ServletException,IOException{
}
public void service(HttpServletRequest
request,HttpServletResponse response)throws
ServletException,IOException{
美斯坦福在线考试系统 十堰职院SCCEG2JSP测试
科目: SCCEG2JSP总分: 100分时间: 60分钟
一、单选题 (共45题,每题2分,说明:选择一项正确的答案)
1、下面不属于B/S结构优势的一项是( )
Out.println(“doGet Hello World”);
Out.println(“</body>”);
Out.println(</html>);
Out.close();
D、request.getSession().setMaxInactiveInterval(30);
A、获取请求属性值
B、读取请求参数值
C、读取Web应用程序上下文参数
D、读取Servlet配置参数
参考答案: C
Out.println(“doPost Hello World”);
Out.println(“</body>”);
}
}
A、一个HTML页面,页面上显示doGet Hello World!
B、一个HTML页面,页面上显示 doPost Hello World!
C、一个空白的HTML页面
D、错误信息
参考答案: C
9、
HttpServletRequest接口的( )方法用于创建会话
A、getSession()
B、getServletContext()
C、setSession();
A、加载
B、实例化
C、初始化
D、请求资源
参考答案: D
6、
Res.setContentType(“text/html”);
PrintWriter out=res.getWriter();
Out.println(“<html>”);
Out.println(“<body>”);
参考答案: C
5、
下面不属于Servlet生命周期阶段的是( )
public void service(HttpServletRequest req,HttpServletResponse
res)
throws ServletException,IOException{
Res.setContentType(“text/html”);
PrintWriter out=res.getWriter();
Out.println(“<html>”);
Out.println(“<body>”);
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
public class HelloServlet extendsession().setTimeout(1800);
B、request.getSession().setTimeout(30)
C、request.getSession().setMaxInactiveInterval(1800);
C、25
D、1433
参考答案: A
4、
假设在helloapp应用中有一个hello.jsp,文件路径为C:/Tomcat/webapps/helloapp/hello/hello.jsp那么在浏览器端访问hello.jsp的URL是(
8、
给定如下Servlet代码,假定在浏览器中输入URL:http://localhost:8080/servlet/HelloServlet,可以调用该servlet,那么该Servlet的输出是(
)
2、
HTTP协议中,请求消息使用( )方法用于通过Internet发送大量数据。
A、get
B、post
C、put
PrintWriter out=response.getWriter();
out.println(“hello!”);
}
}
A、编译该文件时会提示缺少doGet()或者doPost()方法,编译不能够成功通过
}
Public void doPost(HttpServletRequest req,HttpServletResponse
res)
Throws ServletException,IOException{
D、编译后, 把Servletl.class放在正确位置,运行该Servlet,在浏览器中会看到运行期错误信息
参考答案: B
7、
ServletContext对象的作用是( )
request,Httpservletresponse response)
{
_________
}
要把session的失效时间设为30分钟,应该在下划线处插入( )
B、编译后,把Servletl.class放在正确位置,运行该Servlet,在浏览器中会看到输出文字:hello!
C、编译后,把Servletl.class放在正确位置,运行该Servlet,在浏览器中会看不到任何输出的文字
A、只需要在Web服务器而不是在每一个客户端上部署、修改应用程序
B、访问范围更广
C、更加容易被访问
D、访问速度更快
参考答案: D
D、head
参考答案: B
3、
浏览Web网页服务默认的端口号是( )
A、80
B、8181
D、putSession();
参考答案: A
10、
给定某servlet 程序的片段,如下:
Public void doGet(HttpServletRequest
)
A、http://localhost:8080/hello.jsp
B、http://localhost:8080/helloapp/hello.jsp
C、http://localhost:8080/helloapp/hello/hello.jsp
在J2EE中,给定某Servlet的代码如下,编译运行该文件,以下陈述正确的是( )
public class Servletl extends HttpServlet{
public void init() throws ServletException{
}
Public void doGet(HttpServletRequest req,HttpServletResponse
res)
Throws ServletException,IOException{
}
public void service(HttpServletRequest
request,HttpServletResponse response)throws
ServletException,IOException{
美斯坦福在线考试系统 十堰职院SCCEG2JSP测试
科目: SCCEG2JSP总分: 100分时间: 60分钟
一、单选题 (共45题,每题2分,说明:选择一项正确的答案)
1、下面不属于B/S结构优势的一项是( )
Out.println(“doGet Hello World”);
Out.println(“</body>”);
Out.println(</html>);
Out.close();
D、request.getSession().setMaxInactiveInterval(30);
A、获取请求属性值
B、读取请求参数值
C、读取Web应用程序上下文参数
D、读取Servlet配置参数
参考答案: C
Out.println(“doPost Hello World”);
Out.println(“</body>”);
}
}
A、一个HTML页面,页面上显示doGet Hello World!
B、一个HTML页面,页面上显示 doPost Hello World!
C、一个空白的HTML页面
D、错误信息
参考答案: C
9、
HttpServletRequest接口的( )方法用于创建会话
A、getSession()
B、getServletContext()
C、setSession();
A、加载
B、实例化
C、初始化
D、请求资源
参考答案: D
6、
Res.setContentType(“text/html”);
PrintWriter out=res.getWriter();
Out.println(“<html>”);
Out.println(“<body>”);