A. radio B. checkbox C. text D. password
A. <%@ page contentType="text/html;charset=GB2312" %> B. <%@ page contentType="application/msword" %> C. <%@ page contentType="application/nvd.ms-excel" %> D. <%@ page contentType="application/nvd.ms-powerpoint" %>
A. <jsp:useBean id="acc" class="asset.model.Account" scope="request" /> B. <jsp:useBean name="acc" class="asset.model.Account" scope="request" /> C. <jsp:useBean id="acc" class="Account" scope="page" /> D. <jsp:useBean name="acc" class=" asset.model.Account" scope="page" />
A. http://localhost:80/webContent/exam/jsp/view/index.jsp B. http://168.67.18.220:80/exam/jsp/view/index.jsp C. http://168.67.18.220/webContent/exam/jsp/view/index.jsp D. http://localhost/exam/index.jsp
A. http://localhost:8080/MyServlet B. http://localhost:8080/mservlet C. http://localhost:8080/haut/servlet/MyServlet D. http://localhost:8080/myServlet/welcome
A. 0次 B. 仅1次 C. 每一个请求,执行一次 D. 每一个会话,执行一次
A. pageContext B. request C. session D. application
A. Service B. doPost C. doGet D. destroy
A. Statement st=conn.createStatement() B. Statement st=conn.newStatement() C. Statement st=conn.createNewStatement() D. Statement st=new Statement ()
A. pst.setInt("3",2000); B. pst.setInt(3,2000); C. pst.setFloat("salary",2000); D. pst.setString("salary","2000");