資源描述:
《java web2筆試題1》由會員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在行業(yè)資料-天天文庫。
1、JavaWeb編程基礎(chǔ) 考試題1、訪問用Tomcat部署的應(yīng)用,出現(xiàn)下圖中錯(cuò)誤,產(chǎn)生原因可能是(C)。(單選)A.Tomcat服務(wù)器未啟動B.Tomcat服務(wù)器啟動,但輸入U(xiǎn)RL的協(xié)議錯(cuò)誤C.Tomcat服務(wù)器啟動,但輸入U(xiǎn)RL的主機(jī)地址錯(cuò)誤D.Tomcat服務(wù)器啟動,但輸入U(xiǎn)RL的頁面名稱錯(cuò)誤。2、開發(fā)JSP動態(tài)網(wǎng)站的步驟是(AECDB)。(多選)---按步驟選//手工ACDEBA.設(shè)計(jì)web項(xiàng)目的目錄結(jié)構(gòu)B.運(yùn)行Web項(xiàng)目C.創(chuàng)建一個(gè)Web項(xiàng)目D.編寫Web項(xiàng)目的代碼E.部署Web項(xiàng)目3、關(guān)于Map和List,下面說法正確的是(BC)。(
2、多選)A.Map繼承List;B.Map的value可以是List或Map;C.List中可以保存Map或List;D.Map和List只能保存從數(shù)據(jù)庫中取出的數(shù)據(jù)。4、下列選項(xiàng)中,合法的表達(dá)式有(AC)。(多選)A.<%=Math.random()%>B.<%=Math.random();%>C.<%=“4”+“2”%>D.<%Stringx=“4”+“2”;%>5、以下JSP代碼片斷:
<%intx=5;%><%!privateintm(inta){returna+1;}%><%x=3;%>x=<%=x%>,<%=m
3、(x)%>運(yùn)行結(jié)果是(B)。(單選)A.x=3,6B.x=3,4C.x=5,4D.編譯錯(cuò)誤6、欲構(gòu)造ArrayList類的一個(gè)實(shí)例,下列(B)是正確的。(單選)A.ArrayListmyList=newObject();B.ListmyList=newArrayList();C.ArrayListmyList=newList();D.ListmyList=newList();7、閱讀下面的代碼,輸出結(jié)果是(A)。(單選)publicclassArraytest{publicstaticvoidmain(String
4、kyckling[]){Arraytesta=newArraytest();inti[]=newint[5];System.out.println(i[4]);a.amethod();Objecto[]=newObject[5];System.out.println(o[2]);}publicvoidamethod(){intK[]=newint[4];System.out.println(K[3]);}}A.nullnullnullB.null00C.00nullD.0null08、閱讀下面的代碼,輸出結(jié)果是(B)。(單選)publiccl
5、assArraytest2{publicstaticvoidmain(String[]args){int[]arr={1,2,3};for(inti=0;i<2;i++){arr[i]=0;}for(inti=0;i<3;i++){System.out.println(arr[i]);}}}A.123B.003C.023D.0009、在helloapp應(yīng)用中有一個(gè)hello.jsp,它的文件路徑WebRoot/hello/hello.jsp,那么在瀏覽器端訪問hello.jsp的URL是(C)。(單選)A.http://localhost:8
6、080/hello.jspB.http://localhost:8080/helloapp/hello.jspC.http://localhost:8080/helloapp/hello/hello.jsp(上下文路徑)D.http://localhost:8080/hello/hello.jsp10、從HTTP請求中,獲得請求參數(shù),應(yīng)該調(diào)用(B)。(單選)A.request對象的getAttribute()方法B.request對象的getParameter()方法C.session對象的getAttribute()方法D.session對
7、象的getParameter()方法11、以下JSP一共被訪問了兩次,第二次的輸出結(jié)果是(D)。(單選)<%intb=a+1;a++;%><%!inta=1;%>a:<%=a%>b:<%=b%>A.輸出異常信息B.a:1b:3C.a:2b:3D.a:1b:212、以下代碼能否編譯通過,假如能編譯通過,運(yùn)行時(shí)得到什么輸出結(jié)果(C)。(單選)<%request.setAttribute("count",newInteger(0));Integercount=request.getAttribute("count");%><%=count%>A.編
8、譯不通過B.可以編譯運(yùn)行,輸出0C.編譯通過,但運(yùn)行時(shí)拋出ClassCastExceptionD.可以編譯通過,但運(yùn)行無輸出13、page指令用于定義JSP文件中的