版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
Web編程技術(shù)模擬試卷(B卷)填空題20分(20*1)請(qǐng)寫出常用的Web服務(wù)器:IIS、Apache、Tomcat.請(qǐng)寫出常用的常用的Web編輯工具:Dreamweaver、Editplue、EclipseJDBC、JSP、DAO英文全稱分別是:JDBC:JavaDataBaseConnectivingJSP:JavaServerPageDAO:DataAccessObjectJSP的內(nèi)置對(duì)象有out、request、response、session、application連接數(shù)據(jù)庫(kù)的四要素:數(shù)據(jù)庫(kù)驅(qū)動(dòng)、數(shù)據(jù)庫(kù)的URL、數(shù)據(jù)庫(kù)的用戶名、數(shù)據(jù)庫(kù)的密碼選擇題15分(15*1)下面那個(gè)控件的屬性設(shè)立成相同可以達(dá)成各個(gè)控件共同一組的效果(B)AidBnameCtypeDvalue下面哪一個(gè)JSP的注釋,客戶端是可見的(A)A<!--comment-->B//C<%--comment-->D/**/<jsp:param/>不與下列哪些操作指令配合使用(D)A<jsp:include>B<jsp:forward>C<jsp:plugin>D<jsp:setProperty/>下列哪一個(gè)不是JDBC的接口(D)ADriverManagerBConnectionCStatementDPreparement5.jsp執(zhí)行過程:Jsp-》java-》class-》網(wǎng)頁(yè)f分別是以下哪個(gè)順序過程?(A)A.翻譯-》編譯-》執(zhí)行B.翻譯-》執(zhí)行-》編譯C.編譯-》翻譯-》執(zhí)行D.執(zhí)行-》編譯-》翻譯如下選項(xiàng)有哪一個(gè)是jsp表達(dá)式?A<%=9i%>B.<%inti%>C.x=3y+1D.<%x=3y+1%>Javascript連接js文獻(xiàn)方法<scriptlanguae=“javascript”src=“__A___”></script>Aa.jsB.b.javaCcss.csDweb.xml下面哪一個(gè)不是單標(biāo)簽?(D)<br>B.<hr>C.<img>D.<body>當(dāng)點(diǎn)擊提交后跳轉(zhuǎn)客戶端通過(A)訪問服務(wù)器AIEB我的電腦C網(wǎng)上鄰居D回收站關(guān)閉sql數(shù)據(jù)庫(kù)的順序是(A)A先關(guān)閉結(jié)果集再關(guān)閉操作最后關(guān)閉連接B先關(guān)閉連接再關(guān)閉操作最后關(guān)閉結(jié)果集C先關(guān)閉操作再關(guān)閉結(jié)果集最后關(guān)閉連接D先關(guān)閉結(jié)果集再關(guān)閉連接最后關(guān)閉操作下列說法對(duì)的的是(A)jsp不一定是jsp開發(fā)的Jsp一定是jsp開發(fā)的Jsp編譯后生成java后綴Jsp運(yùn)營(yíng)后生成java后綴第三方j(luò)ar文獻(xiàn)保存在哪一個(gè)目錄下?()AWEBROOTBWEBROOT/WEB-INFCWEBROOT/WEB-INF/libDWEBROOT/WEB-INF/classes<inputtype=”password”>123456</input>在頁(yè)面中顯示的效果是(B)A123456B******C.password:123456D123456******14.可以運(yùn)用request對(duì)象的哪個(gè)方法獲取客戶端的表單信息?AA)response.getParameter()B)response.outParameter()C)response.writeParameter()D)response.handlerParameter()15.<select>用于在表單中插入一個(gè)下拉菜單,它需與哪個(gè)標(biāo)記配合使用?DA)<list>B)<item>C)<dot>D)<option>三、單句代碼解釋題20分(10*2)1.<ahref=“”target=“_blank”><imgsrc=”jiageng.jpg”/></a>點(diǎn)擊嘉庚圖片超連接到集美大學(xué)網(wǎng)頁(yè)index.jsp:<formname='myform'method="POST"action="a1.htm"onsubmit="returncheck()">表單以post的方式提交到a1.html提交的時(shí)候并調(diào)用javascript的check函數(shù)檢查setTimeOut(“a()”,5000)alert(“xxxx”)定期onload網(wǎng)頁(yè)加載延時(shí)5000毫秒調(diào)用a函數(shù)執(zhí)行a方法并彈出警告框提醒vartime=newDate();獲取當(dāng)前日期<bodyonload='.focus()'>頁(yè)面加載時(shí)使光標(biāo)停留在myform表單的name控件位置聚焦response.setHeader("refresh","2");out.println(newDate());//每隔2秒自動(dòng)刷新顯示時(shí)間<inputtype=”hidden”>//隱藏域看不見頁(yè)面上自身用戶不能在其中輸入用來預(yù)設(shè)某些要傳送的信息。<%request.setCharacterEncoding("gb2312");%>//設(shè)立編碼防止亂碼request.getParameter();//傳遞參數(shù)返回值類型為Stringrequest.getParameterValues();//獲得參數(shù)所包含的值一組多個(gè)值10.session.setAttribute();//設(shè)立屬性防盜鏈保存用戶名session.getAttribute();//取得屬性session.isNew();//判斷是否是一個(gè)新的用戶session.invalidate();//使session失效注銷退出application.getAttribute();//返回對(duì)象獲取application.setAttribute();//添加對(duì)象設(shè)立四、簡(jiǎn)答題10分(5*2)1.簡(jiǎn)樸介紹下JSP的開發(fā)環(huán)境如何搭建以及JSP程序如何運(yùn)營(yíng)?1.安裝JDK添加環(huán)境變量2.安裝Tomcat在IE中輸入:8080或http://本機(jī)ip:8080或http://localhost:8080)。檢查是否啟動(dòng)成功出現(xiàn)貓,若此時(shí)瀏覽器中顯示Tomcat的歡迎和管理畫面,即表達(dá)服務(wù)器安裝和啟動(dòng)成功。3.安裝SQLServer20234.安裝MyEclipse7.5關(guān)于Tomcat服務(wù)器虛擬目錄的配置打開Tomcat的安裝目錄,進(jìn)入conf/server.xml,在</host>上方加入<Contextpath="/虛擬目錄名"docBase="虛擬目錄途徑"/>2.<jsp:include/>與<%@include%>有什么區(qū)別?(B卷)<%@include%>包含靜態(tài)的內(nèi)容先包含后解決<jsp:include/>動(dòng)態(tài)包含先解決后包含<jsp:forward/>與response.sendRedirect()有什么區(qū)別?(B卷)<jsp:forward/>URL不變,服務(wù)端跳轉(zhuǎn)無條件跳轉(zhuǎn)之后代碼不再執(zhí)行釋放資源傳遞參數(shù)response.sendRedirect()URL地址改變,客戶端跳轉(zhuǎn)有條件跳轉(zhuǎn)不能保存request的屬性URL重寫傳遞參數(shù)4.Page、request、session與application的區(qū)別是什么?生成期、作用范圍又有何不同?①在一個(gè)頁(yè)面范圍內(nèi):page②在一次服務(wù)器請(qǐng)求范圍內(nèi):request③在一次會(huì)話范圍內(nèi):session④在一個(gè)應(yīng)用服務(wù)器范圍內(nèi):applicationDAO數(shù)據(jù)訪問接口的用途是什么?前臺(tái)顯示與后臺(tái)邏輯操作分離,JSP頁(yè)面的功能就是將DAO返回的結(jié)果進(jìn)行輸出。6.Servlet的開發(fā)環(huán)節(jié)servlet的核心代碼寫在哪?在哪里注冊(cè)?一般情況下,重要用到doGet和doPost方法。web.xml注冊(cè)7.在這學(xué)期開發(fā)過程碰到什么問題,你又是如何解決的?A卷考過程序解釋題10分(5*2)分析程序運(yùn)營(yíng)結(jié)果原網(wǎng)頁(yè)a1.jsp:程序一:system.out.println(“aaa”);<jsp:forwardpage=”a2.jsp”/>System.out.println(“bbb”);運(yùn)營(yíng)結(jié)果:aaaURL地址:a1.jsp屬于服務(wù)端跳轉(zhuǎn)程序二:system.out.println(“aaa”);response.sendRedirect(“a2.jsp”);System.out.println(“bbb”);運(yùn)營(yíng)結(jié)果:aaabbbURL地址:a2.jsp屬于客戶端跳轉(zhuǎn)IncludeDemo.jsp:<% intj=100;%><h1>includeDemo.jsp中的:<%=j%></h1><%@includefile="include.jsp"%>Include.jsp:<% inti=10;%><h1>include.jsp:<%=i%></h1>運(yùn)營(yíng)結(jié)果:includeDemo.jsp中的:100include.jsp:103.scope四種范圍:page,只在當(dāng)前頁(yè)有效,合用于操作數(shù)據(jù)庫(kù)調(diào)用兩次結(jié)果顯示request,屬性只保存在一次服務(wù)器跳轉(zhuǎn)中,使用<jsp:forward>才可調(diào)用1次刷新遞增session,屬性保存在一次會(huì)話中,合用于開發(fā)購(gòu)物車等無論怎么刷新也不會(huì)重新聲明數(shù)字遞增application,屬性公有,此對(duì)象在整個(gè)服務(wù)器只實(shí)例化一次只創(chuàng)建一次六、程序改寫題5分(5*1)1.B卷中代碼改寫效率提高題目給代碼表單提交改寫成JavaBean源代碼:<%@pagecontentType="text/html"pageEncoding="GBK"%><html><head><title>.</title></head><body><%request.setCharacterEncoding("GBK");%><jsp:useBeanid="simple"scope="page"class="jmu.SimpleBean"/><%simple.setName(request.getParameter("name"));simple.setAge(Integer.parseInt(request.getParameter("age")));%><h3>姓名:<%=simple.getName()%></h3><h3>年齡:<%=simple.getAge()%></h3></body></html>改寫<%@pagecontentType="text/html"pageEncoding="GBK"%><html><head><title>.</title></head><body><%request.setCharacterEncoding("GBK");%><jsp:useBeanid="simple"scope="page"class="jmu.SimpleBean"/><jsp:setPropertyname="simple"property="*"/><jsp:setPropertyname="simple"property="name"param="age"/><jsp:setPropertyname="simple"property="age"param="name"/><h3>姓名:<%=simple.getName()%></h3><h3>年齡:<%=simple.getAge()%></h3></body></html>七、設(shè)計(jì)題10分(10*1)1.編寫一個(gè)可以打印出九九乘法表的JSP網(wǎng)頁(yè),規(guī)定對(duì)齊和一定的修飾(B卷規(guī)定用表達(dá)式)<tableborder=2><%for(inti=1;i<=9;i++){%><tr><%for(intj=1;j<=i;j++){%><td><%=j%>*<%=i%>=<%=i*j%> </td><%}%></tr><%}%></table>A卷考過的四部曲<%Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver").newInstance();//加載驅(qū)動(dòng)程序Stringurl="jdbc:sqlserver://:1433;DatabaseName=testdb";//定義數(shù)據(jù)庫(kù)的地址,tempdb為所要訪問的數(shù)據(jù)庫(kù)名稱,:1433是ip地址和端口Stringuser="sa";//數(shù)據(jù)庫(kù)的用戶名Stringpassword="123456";//數(shù)據(jù)庫(kù)的密碼Connectionconn=DriverManager.getConnection(url,user,password);//連接數(shù)據(jù)庫(kù)Statementstmt=conn.createStatement();//創(chuàng)建Statmen語(yǔ)句總管Stringsql="select*fromdbo.person";//構(gòu)造所要執(zhí)行的SQL語(yǔ)句,dbo.person是tempdb數(shù)據(jù)庫(kù)中的一個(gè)表ResultSetrs=stmt.executeQuery(sql);//執(zhí)行sql語(yǔ)句并返回結(jié)果給所定義的結(jié)果集%>第一個(gè)字段 第二個(gè)字段<br><%//下面通過循環(huán)把字段的內(nèi)容顯示出來while(rs.next()){%><%=rs.getString(1)%> <%=rs.getString(2)%><%="<br>"%><%}%><%="<br>數(shù)據(jù)庫(kù)操作成功!"%><%rs.close();//關(guān)閉結(jié)果集stmt.close();//關(guān)閉Statmentconn.close();//關(guān)閉連接%>新聞一級(jí)標(biāo)題發(fā)布系統(tǒng)實(shí)現(xiàn)對(duì)數(shù)據(jù)庫(kù)的增刪改查前臺(tái)調(diào)用jspDB6配合jsp構(gòu)造容器創(chuàng)建容器扔進(jìn)容器取出showFirstTitle.jsp<tableborder="2"><tr><th>ID號(hào)</th><th>新聞分類</th><th>創(chuàng)建者</th><th>創(chuàng)建時(shí)間</th></tr><%NewsFirstTitleDB6first=newNewsFirstTitleDB6(); Listlist=first.getAllFirstLevelTitleList(); if(list.size()!=0){ for(inti=0;i<list.size();i++){ FirstLevelTitlefTitle=(FirstLevelTitle)list.get(i);%><tr><td><%=fTitle.getId()%></td><td><%=fTitle.getTitleName()%></td><td><%=fTitle.getCreator()%></td><td><%=fTitle.getCreateTime()%></td></tr><%}}%></table>NewsFirstTitleDB6.javapackagejmu;importjava.sql.*;importjava.util.*;importjmu.FirstLevelTitle;publicclassNewsFirstTitleDB6{/**從數(shù)據(jù)庫(kù)中取出所有新聞一級(jí)標(biāo)題,并封裝在集合中返回*/ publicListgetAllFirstLevelTitleList(){ List<FirstLevelTitle>list=newArrayList<FirstLevelTitle>(); ConnectiondbConnection=null; PreparedStatementpStatement=null; ResultSetres=null; try{ dbConnection=ConnectionManager.getConnection(); StringstrSql="select*fromFirstLevelTitleorderbyCreateTimedesc"; pStatement=dbConnection.prepareStatement(strSql); res=pStatement.executeQuery(); while(res.next()){ intid=res.getInt("id"); Stringtitle=res.getString(2); Stringcreator=res.getString("Creator"); //Datetime=res.getDate("CreatTime"); java.util.Datetime=res.getDate(4); FirstLevelTitlefTitle=newFirstLevelTitle(id,title,creator,time); list.add(fTitle); } }catch(SQLExceptionsqlE){ sqlE.printStackTrace(); }finally{ ConnectionManager.closeResultSet(res); ConnectionManager.closeStatement(pStatement); ConnectionManager.closeConnection(dbConnection); } returnlist; }}addFirstTitle.jsp<formname="form1"method="post"action="saveFirstLevelTitle.jsp"><tablewidth="100%"border="0"cellspacing="1"cellpadding="0"> <tr> <tdwidth="45%"align="right">標(biāo)題名:</td> <td><inputtype="text"name="titlename"size="20"></td> </tr> <tr> <tdcolspan=2align=center> <inputtype="submit"name="Submit" value="擬定"onClick="returncheckOneTitle()"> <inputtype="reset"name="Reset"value="重置"> </td> </tr></table><palign="center">注意:發(fā)布前請(qǐng)認(rèn)真檢查輸入的標(biāo)題是否對(duì)的</p></form>保存頁(yè)面saveFirstTitle.jsp<% //指定請(qǐng)求的編碼為GBK request.setCharacterEncoding("GBK"); //獲取用戶輸入 StringtitleName=request.getParameter("titlename"); FirstLevelTitlefTitle=newFirstLevelTitle(); fTitle.setTitleName(titleName); fTitle.setCreator("管理員"); //向數(shù)據(jù)庫(kù)中插入一行記錄 FirstLevelTitleDbOpreationdbOpreation=newFirstLevelTitleDbOpreation(); intresult=dbOpreation.insertOneRecord(fTitle); //假如插入成功,跳轉(zhuǎn)至成功頁(yè)面;否則跳轉(zhuǎn)至失敗頁(yè)面 if(result>0){ request.getRequestDispatcher("success.jsp").forward(request,response); }else{ request.getRequestDispatcher("error.jsp").forward(request,response); }%>FirstLevelTitleDbOpreation.javapublicintinsertOneRecord(FirstLevelTitlefTitle){ intresult=0; Connectioncon=null; PreparedStatementpStatement=null; try{ SimpleDateFormatHMFromat=newSimpleDateFormat("yyyy-MM-ddhh:mm:ss"); StringstrCurrentTime=HMFromat.format(newDate()); con=ConnectionManager.getConnection(); StringstrSql="insertintoFirstLevelTitlevalues(?,?,?,?)"; pStatement=con.prepareStatement(strSql); pStatement.setInt(1,getNewId()); pStatement.setString(2,fTitle.getTitleName()); pStatement.setString(3,fTitle.getCreator()); pStatement.setString(4,strCurrentTime); result=pStatement.executeUpdate(); }catch(SQLExceptionsqlE){ sqlE.printStackTrace(); }finally{ ConnectionManager.closeStatement(pStatement); ConnectionManager.closeConnection(con); } returnresult; }刪除一級(jí)標(biāo)題:delFirstTitle.jsp<%FirstLevelTitleDbOpreationfo=newFirstLevelTitleDbOpreation();StringfirstLevelId=request.getParameter("id");fo.deleteFirstLevelTitle(Integer.parseInt(firstLevelId));request.getRequestDispatcher("showFirstTitle.jsp").forward(request,response);%> publicvoiddeleteFirstLevelTitle(intfirstTitleId){ ConnectiondbConnection=null; PreparedStatementpStatementS=null; PreparedStatementpStatementF=null; //ResultSetres=null; try{ dbConnection=ConnectionManager.getConnection(); StringdelSecondSql="deletefromSecondLevelTitlewhereParentTitle=?"; pStatementS=dbConnection.prepareStatement(delSecondSql); pStatementS.setInt(1,firstTitleId); pStatementS.executeUpdate(); StringdelFirstSql="deletefromFirstLevelTitlewhereid=?"; pStatementF=dbConnection.prepareStatement(delFirstSql); pStatementF.setInt(1,firstTitleId); pStatementF.executeUpdate(); }catch(Exceptione){ e.printStackTrace(); } }更新一級(jí)標(biāo)題:<onclick=”window.open(‘updateFirstTitle.jsp?id=<%=id%>’)”><%request.setCharacterEncoding("GBK");FirstLevelTitleDbOpreationfo=newFirstLevelTitleDbOpreation();StringfirstLevelId=(String)request.getParameter("id");StringtitleName=request.getParameter("titlename");StringCreator=request.getParameter("creator");fo.updateFirstTitle(Integer.parseInt(firstLevelId),titleName,Creator);request.getRequestDispatcher("showFirstTitle.jsp").forward(request,response);%>publicvoidupdateFirstTitle(intfirstLevelId,Stringtitlename,Stringcreator){ Connectioncon=null; PreparedStatementpStatement=null; try{ con=ConnectionManager.getConnection(); StringstrSql="updateFirstLevelTitlesetTitleName=?,Creator=?whereId=?"; pStatement=con.prepareStatement(strSql); pStatement.setString(1,titlename); pStatement.setString(2,creator); pStatement.setInt(3,firstLevelId); introw=pStatement.executeUpdate(); System.out.println("成功更新了"+row+"行數(shù)據(jù)!"); }catch(SQLExceptionsqlE){ sqlE.printStackTrace(); }finally{ ConnectionManager.closeStatement(pStatement); ConnectionManager.closeConnection(con); } }DAO技術(shù)的開發(fā)環(huán)節(jié)DAO由以下幾部分組成:①DatabaseConnection:專門負(fù)責(zé)數(shù)據(jù)庫(kù)的打開與關(guān)閉操作的類。②VO:重要由屬性、setter、getter方法組成,VO類中的屬性與表中的字段相相應(yīng),每一個(gè)VO類的對(duì)象都表達(dá)表中的每一條記錄。③DAO:重要定義操作的接口,定義一系列數(shù)據(jù)庫(kù)的原子操作,如增長(zhǎng)、修改、刪除、按ID查詢等。④Impl:DAO接口的真實(shí)實(shí)現(xiàn)類,完畢具體的數(shù)據(jù)庫(kù)操作,但是不負(fù)責(zé)數(shù)據(jù)庫(kù)的打開和關(guān)閉。Vo類:packagecn.jmu.vo;publicclassProduct{ //商品ID protectedintproductID; //商品編號(hào) protectedStringserialNumber; //商品名字 protectedStringname; //商品品牌 protectedStringbrand; //商品型號(hào) protectedStringmodel; //商品價(jià)格 protecteddoubleprice; //商品的圖片途徑 protectedStringpicture; //商品描述 protectedStringdescription; //商品無參構(gòu)造 publicProduct(){ super(); } //商品有參構(gòu)造 publicProduct(StringserialNumber,Stringname,Stringbrand, Stringmodel,doubleprice,Stringpicture,Stringdescription){ super(); this.serialNumber=serialNumber; =name; this.brand=brand; this.model=model; this.price=price; this.picture=picture; this.description=description; } publicintgetProductID(){ returnproductID; } publicvoidsetProductID(intproductID){ ductID=productID; } publicStringgetSerialNumber(){ returnserialNumber; } publicvoidsetSerialNumber(StringserialNumber){ this.serialNumber=serialNumber; } publicStringgetName(){ returnname; } publicvoidsetName(Stringname){ =name; } publicStringgetBrand(){ returnbrand; } publicvoidsetBrand(Stringbrand){ this.brand=brand; } publicStringgetModel(){ returnmodel; } publicvoidsetModel(Stringmodel){ this.model=model; } publicdoublegetPrice(){ returnprice; } publicvoidsetPrice(doubleprice){ this.price=price; } publicStringgetPicture(){ returnpicture; } publicvoidsetPicture(Stringpicture){ this.picture=picture; } publicStringgetDescription(){ returndescription; } publicvoidsetDescription(Stringdescription){ this.description=description; } }Impl:定義接口packagecn.jmu.dao;importjava.util.*;importcn.jmu.vo.Product;publicinterfaceIProductDAO{ publicArrayListgetAllNextGoods(intpage,intpageCount)throwsException; publicArrayListgetAllGoods()throwsException; publicintgetPages(intpageCount)throwsException; publicProductgetOneGood(intpid)throwsException; publicbooleanaddNew(Productproduct)throwsException; publicbooleanupdateOneGood(Productproduct)throwsException; publicbooleandelGood(intpid)throwsException; publicbooleangoodsDel(int[]pids)throwsException; }Dao.impl:具體實(shí)現(xiàn)類packagecn.jmu.dao.impl;importjava.util.ArrayList;importcn.jmu.dao.IProductDAO;importcn.jmu.vo.Product;importjava.sql.*;importjava.util.*;importcn.jmu.dbc.*;publicclassProductDAOImplimplementsIProductDAO{ /* *添加新商品 *參數(shù):新商品信息的類對(duì)象 */ publicbooleanaddNew(Productproduct)throwsException{ booleanresult=false; Connectioncon=null; PreparedStatementpstmt=null; try{ con=ConnectionManager.getCon(); pstmt=con.prepareStatement("insertintoPRODUCTvalues(?
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 利潤(rùn)股合同范本(2篇)
- 2024年度天津市公共營(yíng)養(yǎng)師之三級(jí)營(yíng)養(yǎng)師自我檢測(cè)試卷A卷附答案
- 2024年度天津市公共營(yíng)養(yǎng)師之三級(jí)營(yíng)養(yǎng)師??寄M試題(全優(yōu))
- 2024年度四川省公共營(yíng)養(yǎng)師之三級(jí)營(yíng)養(yǎng)師能力提升試卷B卷附答案
- 2024年度四川省公共營(yíng)養(yǎng)師之二級(jí)營(yíng)養(yǎng)師考前沖刺模擬試卷A卷含答案
- 2020-2025年中國(guó)智能面料行業(yè)競(jìng)爭(zhēng)格局分析及投資規(guī)劃研究報(bào)告
- 2025承包加工合同協(xié)議
- 2025先合同義務(wù)的內(nèi)容有什么
- 2025年練染絲織品項(xiàng)目可行性研究報(bào)告
- 墻瓷磚行業(yè)深度研究報(bào)告
- 2025共團(tuán)永康市委下屬青少年綜合服務(wù)中心駐團(tuán)市委機(jī)關(guān)人員招聘2人(浙江)高頻重點(diǎn)提升(共500題)附帶答案詳解
- 2025年計(jì)算機(jī)二級(jí)WPS考試題目
- 智能 檢測(cè)與監(jiān)測(cè) 技術(shù)-智能建造技術(shù)專01課件講解
- GB/T 750-2024水泥壓蒸安定性試驗(yàn)方法
- 供應(yīng)商年度審核計(jì)劃及現(xiàn)場(chǎng)審核表
- 環(huán)甲膜穿刺ppt課件
- 裝配基礎(chǔ)知識(shí)要點(diǎn)
- 電腦全自動(dòng)插拔力試驗(yàn)機(jī)操作指導(dǎo)書
- 人臉識(shí)別系統(tǒng)采購(gòu)安裝規(guī)定合同范本
- 重慶市水利工程驗(yàn)收管理辦法
- 傳感器課程設(shè)計(jì)超聲波傳感器
評(píng)論
0/150
提交評(píng)論