xxxx18一60岁hd中国/日韩女同互慰一区二区/西西人体扒开双腿无遮挡/日韩欧美黄色一级片 - 色护士精品影院www

  • 大小: 915KB
    文件類型: .zip
    金幣: 2
    下載: 0 次
    發(fā)布日期: 2023-07-28
  • 語(yǔ)言: 其他
  • 標(biāo)簽: asp.net??MVC??

資源簡(jiǎn)介

在線考試系統(tǒng)是一種環(huán)保的考試形式,所有的步驟都在電腦上完成。通過(guò)對(duì)國(guó)內(nèi)高校對(duì)題庫(kù)、考試、練習(xí)、考試數(shù)據(jù)分析、檔案管理等的需求,從基本信息、試題建設(shè)、題庫(kù)規(guī)劃、移動(dòng)練習(xí)、智能組卷、自定義輸出、智能排考、數(shù)據(jù)分析等進(jìn)行了全流程設(shè)計(jì)。用戶可通過(guò)流程定義將現(xiàn)有的管理流程移植到考試系統(tǒng)中,也可自定義管理流程,從而解決學(xué)校教考分離的難點(diǎn)和痛點(diǎn)。 現(xiàn)在流行的考試系統(tǒng)都是基于云架構(gòu)設(shè)計(jì),引入了大量的國(guó)際先進(jìn)的信息處理技術(shù),并結(jié)合移動(dòng)互聯(lián),支持目前流行的大部分音視頻和圖片格式,同時(shí)可對(duì)數(shù)學(xué)公式、化學(xué)公式直接進(jìn)行處理,可實(shí)現(xiàn)傳統(tǒng)考試到無(wú)紙化考試的完整切換。 在線考試系統(tǒng)可實(shí)現(xiàn)智能組卷、智能排考、智能閱卷等功能,用戶可實(shí)時(shí)進(jìn)行不同程度的干預(yù)和調(diào)整,從而使整個(gè)過(guò)程更符合用戶要求。一線老師只負(fù)責(zé)按照考綱教學(xué)和試題庫(kù)建設(shè),考試管理人員負(fù)責(zé)組織試題建設(shè)和從試題庫(kù)中抽取試卷考試,考試評(píng)價(jià)由系統(tǒng)根據(jù)一定的評(píng)價(jià)模型自動(dòng)生成,從而實(shí)現(xiàn)了分散建設(shè)、集中管理和統(tǒng)一應(yīng)用的目標(biāo)。考場(chǎng)抽題組卷智能化、主客觀題作答無(wú)紙化、主觀題教師閱卷網(wǎng)絡(luò)化、考試質(zhì)量分析自動(dòng)化,大大降低了考試過(guò)程的人為干預(yù)程度,保證了考試效果和教學(xué)評(píng)價(jià)的客觀性和公正性。 任課老師可隨時(shí)安排開(kāi)放練習(xí)和階段性測(cè)試,并通過(guò)后臺(tái)隨時(shí)查看學(xué)生練習(xí)情況和知識(shí)掌握情況,據(jù)此實(shí)時(shí)調(diào)整教學(xué)安排,從而使教學(xué)更有針對(duì)性。學(xué)生可通過(guò)移動(dòng)終端隨時(shí)進(jìn)行課程練習(xí)和自測(cè),從而即時(shí)進(jìn)行知識(shí)鞏固并且隨時(shí)掌握自己對(duì)知識(shí)的掌握程度。

資源截圖

代碼片段和文件信息

package?com.etest.action;

import?java.io.IOException;
import?java.io.PrintWriter;

import?javax.servlet.ServletException;
import?javax.servlet.http.HttpServlet;
import?javax.servlet.http.HttpServletRequest;
import?javax.servlet.http.HttpServletResponse;

import?com.etest.dao.IUser;
import?com.etest.dao.impl.IUserImpl;

public?class?CheckUserNoAction?extends?HttpServlet?{

/**
?*?檢測(cè)學(xué)號(hào)是否被使用
?*/
public?CheckUserNoAction()?{
super();
}

/**
?*?Destruction?of?the?servlet.?

?*/
public?void?destroy()?{
super.destroy();?//?Just?puts?“destroy“?string?in?log
//?Put?your?code?here
}

/**
?*?The?doGet?method?of?the?servlet.?

?*
?*?This?method?is?called?when?a?form?has?its?tag?value?method?equals?to?get.
?*?
?*?@param?request?the?request?send?by?the?client?to?the?server
?*?@param?response?the?response?send?by?the?server?to?the?client
?*?@throws?ServletException?if?an?error?occurred
?*?@throws?IOException?if?an?error?occurred
?*/
public?void?doGet(HttpServletRequest?request?HttpServletResponse?response)
throws?ServletException?IOException?{
String?u_no=request.getParameter(“u_no“);
IUser?iu=new?IUserImpl();
PrintWriter?out=response.getWriter();
if?(iu.checkUserByNo(u_no))?{
????out.print(“false“);//如果學(xué)號(hào)已被使用,向頁(yè)面返回“false“字符串。
}else{
out.print(“true“);//如果學(xué)號(hào)未被使用,向頁(yè)面返回“true“字符串。
}
}

/**
?*?The?doPost?method?of?the?servlet.?

?*
?*?This?method?is?called?when?a?form?has?its?tag?value?method?equals?to?post.
?*?
?*?@param?request?the?request?send?by?the?client?to?the?server
?*?@param?response?the?response?send?by?the?server?to?the?client
?*?@throws?ServletException?if?an?error?occurred
?*?@throws?IOException?if?an?error?occurred
?*/
public?void?doPost(HttpServletRequest?request?HttpServletResponse?response)
throws?ServletException?IOException?{
doGet(requestresponse);
}

/**
?*?Initialization?of?the?servlet.?

?*
?*?@throws?ServletException?if?an?error?occurs
?*/
public?void?init()?throws?ServletException?{
//?Put?your?code?here
}

}

?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----
?????文件?????????455??2013-10-11?09:39??.classpath
?????目錄???????????0??2013-10-11?09:37??.myeclipse\
?????文件?????????288??2013-10-11?09:37??.mymetadata
?????文件?????????262??2013-10-08?22:41??.mystrutsdata
?????文件??????????66??2013-09-30?13:58??.myumldata
?????文件????????1494??2013-10-08?22:41??.project
?????目錄???????????0??2013-10-11?09:37??.settings\
?????文件?????????500??2013-09-30?13:58??.settings\.jsdtscope
?????文件?????????330??2013-09-30?13:58??.settings\org.eclipse.jdt.core.prefs
?????文件??????????49??2013-09-30?13:58??.settings\org.eclipse.wst.jsdt.ui.superType.container
?????文件???????????6??2013-09-30?13:58??.settings\org.eclipse.wst.jsdt.ui.superType.name
?????目錄???????????0??2013-10-11?09:37??src\
?????目錄???????????0??2013-10-11?09:37??src\com\
?????目錄???????????0??2013-10-11?09:37??src\com\etest\
?????目錄???????????0??2013-10-11?09:37??src\com\etest\action\
?????文件????????2163??2013-09-30?13:58??src\com\etest\action\CheckUserNoAction.java
?????文件????????1152??2013-10-04?23:10??src\com\etest\action\CourseAddAction.java
?????文件????????1012??2013-09-30?13:58??src\com\etest\action\CourseDelAction.java
?????文件????????1487??2013-09-30?13:58??src\com\etest\action\CourseListAction.java
?????文件????????2671??2013-09-30?13:58??src\com\etest\action\GetAllClassAction.java
?????文件????????1200??2013-09-30?13:58??src\com\etest\action\GetAllCourseAction.java
?????文件????????2568??2013-10-03?23:56??src\com\etest\action\GetClassCourseUserAction.java
?????文件????????1788??2013-09-30?13:58??src\com\etest\action\GetSingleChoiceAction.java
?????文件????????1200??2013-09-30?13:58??src\com\etest\action\GetTestCourseAction.java
?????文件????????1682??2013-10-03?00:13??src\com\etest\action\GetUserByClassAction.java
?????文件????????2727??2013-09-30?13:58??src\com\etest\action\InitUserPwdAction.java
?????文件????????2791??2013-09-30?13:58??src\com\etest\action\LoginAction.java
?????文件?????????821??2013-09-30?13:58??src\com\etest\action\LoginOutAction.java
?????文件????????1326??2013-09-30?13:58??src\com\etest\action\OptionContextDelAction.java
?????文件????????2486??2013-10-04?21:48??src\com\etest\action\SaveSingleChoiceAction.java
?????文件????????2541??2013-10-03?22:13??src\com\etest\action\SingleChoiceAddAction.java
............此處省略149個(gè)文件信息

評(píng)論

共有 條評(píng)論

相關(guān)資源