网络考试系统的设计与实现

以下是资料介绍,如需要完整的请充值下载. 本资料已审核过,确保内容和网页里介绍一致.  
无需注册登录,支付后按照提示操作即可获取该资料.
资料介绍:


摘  要
  随着教育思想的更新和科学技术的进步,以纸和笔为主要工具的传统考试方式的诸多弊端越来越突出的显现出来。试卷的设计、组织、印刷、分发、考试等将耗费大量的人力物力,而且工作效率低下、主观性较强。针对这一现状,基于网络的考试系统应运而生。网络考试系统突破了传统考试方式的时空限制,使考试方式更为灵活,同时充分利用计算机进行自动出题等功能,大大减轻了管理人员和教师的工作量。
  本设计的开发是基于B/S结构,采用ASP程序设计语言及Access数据库进行设计与开发;本文首先介绍系统开发环境和运行平台、asp编程技术及数据库的相关知识,并对网络考试子系统的设计进行了详细的需求分析;然后给出了网络考试子系统的设计方案及系统的具体实现步骤,主要功能包括新闻发布、网络考试、题库管理等功能模块;最后,通过综合测试与分析,说明该系统运行稳定、可靠,具有一定的实用价值。

  关键词:网络考试;B/S结构;题库管理;数据库;asp编程技术
  
Design and Implementation of Online Exam System
                        --Exam Subsystem
  Abstract
  With the improvement of education and science technology, the shortcomings in traditional exam system, which mainly uses paper and pen as its main tools, become increasingly obvious. The design, building, printing, distribution, tests of the examination paper will cost lots of manpower and materials. Moreover the working efficiency is low, the subjectivity is stronger. In view of this present situation, the online exam system based on the network arises at the historic moment. The network exam system breaks through the space and time limitation in the traditional test, which causes the test way to be more nimble, simultaneously makes full use of the computer automatically setting the examination paper and so on, and greatly reduces the administrative personnel and teachers' work load.
  This paper introduces design and implementation of exam subsystem based on B/S, with Access database applications and ASP programming.At first, this paper introduces development condition, platform, asp programming technology, database, etc, and the demands for the online exam system are analyzed in detail. Then it produces the design idea and concrete implement steps of this system. The system's functions mainly include news issuing, the management of examination room, online exam, the management of item pool and so on. At last, by testing and analyzing, it shows that the system runs stably and reliably, which has some practical value. 
  
  Key words: Online Exam; B/S Structure; Management of Item Pool; Database; asp Programming Technology
  
系统功能
  2.2.1 新闻管理
  可以添加、修改、删除新闻,系统将在首页显示最新的5条新闻。
  2.2.2 考试管理
  可以发布、修改、删除多个考场信息;可以动态设定各种题型数量和分值;考场试卷没有生成之前可以修改考试信息,生成之后将不能再修改考试信息。
  2.2.3 试卷生成
  对刚发布的考场根据题型、数量、对应考生自动生成试卷。
  2.2.4 考场管理
  对生成试卷待考的考场宣布开考,同时生成一个属于此考场的随机验证密码(考生登陆考场时,监考教师提供给考生),对考场进行管理包括对单一考生实行锁定、解锁、交卷,或者对一个考场全部考生实行全部锁定、全部解锁、全部交卷操作。被锁定的考生将不能继续答卷。此外,被锁定的考生、已经登陆非法退出考试界面的考生、不能提供考场随机验证密码的考生都不能登陆考试系统。(可以最大限度的杜绝考试作弊事件的发生)未登陆的考生、被解锁的考生需要提供考场随机验证密码、考生准考证号码、考生账号密码才能够登陆考试系统,进行在线考试。交卷后,考生本人或者监考教师均不能再修改考试信息。
  2.2.5 题库管理
  用户可以在线对题库中试题进行添加、编辑、删除等维护操作;单选题、多选题选项不限定个数、系统会自动判定;系统首页会显示题库中各题型题量信息。
  对题库的批量上传请直接使用数据的导入导出,题库在表quiLib中,参数名和字段名说明如下。
  (1)[ID]试题编号:索引、自动编号、用户不能干预。
  (2)[subjID]科目编号:根据科目subject表中对应ID设置。
  (3)[quizTitle]试题题干:就是题目。
  (4)[quizClass]试题类型:radio1为判断题,radio2为单选题,checkbox为多选题,text为填空题。
  (5)[quizOption]试题选择项:各选择项之间用"|"隔开,开头无需加ABC等字母,从前往后依次为ABCD等选择项,系统会自动判断,判断和填空题留空。
  (6)[quizKey]试题答案:判断题中A为正确,B为错误。
  (7)[quizHits]试题命中次数:系统出卷时被抽中次数,开始为0。
  (8)[quizKeyOk]考生答对次数:开始为0。
  (9)[quizWriter]试题作者。
  (10)[quizTime]试题添加时间。
  2.2.6 科目管理
  科目管理实现添加、修改、删除科目等功能。
  2.2.7 系统初始化
  系统初始化实现删除已经考场安排信息、考生答卷信息、考生试卷信息等功能。