资源描述:
《毕业设计(论文)-pb90自动组卷系统开发设计》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库。
1、自动组卷系统开发本科毕业设计(论文)题目:自动组卷系统开发DevelopmentOfTestpaperAuto-productionSystem46自动组卷系统开发摘要本文首先分析了自动组卷系统在具体的教学活动过程中的实际需求,然后以C语言程序设计的教学为背景,设计与实现了一个实际通用的自动组卷系统,对其中的数据库结构设计以及各个主要模块的实现进行了详细的介绍。本系统可以从试题库中自动的查找和组织出一些不同题型、不同难度、不同章节范围内的试题来组成一份合理的试卷。它采用的是利用试卷的一组特征值,记录用户提供的试
2、卷题目类型、章节分布、难易程度等条件,采用随机算法,借助于系统中的一系列数据文件,使具体课程的相关数据动态地抽象成逻辑数据,用以解决通用问题,线性的规划出一份约束满足的、合理的试卷。本系统的开发工具是powerbuilder9.0,使用的数据库为Access2003。系统分为题库编辑、自动组卷、试卷存储、试卷打印等功能。关键词:自动组卷题库管理数据库powerbuilder9.046自动组卷系统开发46自动组卷系统开发AbstractThispaperanalysestheactualdemandofauto-
3、productionfortestpapersysteminthecourseofconcreteteachingactivityatfirst.ThentakingteachingofClanguageprogramdesignasthebackground,itdesignsandrealizesaTestpaperauto-productionsystem.First,itExplainsthedesignforthedatabasestructure,thenintroducesthedetailedo
4、netotherealizationofeachmainmoduleamongthem.Itcanautomaticallyfindandorganizeacertainnumberoftestquestionsinvarioustypeswithdifferentdegreesofdifficultyincertainscopeinthedatabasetoformareasonabletestpaper.Whatitadoptistomakeuseoftotryacharacteristicvalueofw
5、inding,recordingthecustomertoprovideoftryatopictype,chaptertodistribute,difficulteasydegreeetc.condition,adoptionrandomcalculateway,askforhelpfromaseriesofdatadocumentwithinsystem,maketherelateddatadynamicstategroundoftheconcretecourseabstractthelogicdata,re
6、solvetheingeneraluseprobleminorderto,lineprogramastipulationoftosatisfyof,trybookreasonablely.Thedevelopmenttoolofthissystemispowerbuilder9.0,thedatabaseofisAccess2003.Thesystemisdividedintodatabaseedit,testpaperauto-production,testpapersaving,testpaperprint
7、ingetc.function.Keywords:TestPaperAuto-production;DatabaseManagementofTestQuestions;Database;Powerbuilder9.046自动组卷系统开发46自动组卷系统开发目录前言1第一章系统分析21.1系统目标21.2系统需求分析2第二章系统总体设计4第三章开发工具及开发环境63.1总体开发工具及环境63.2开发工具简介63.3数据库的选择73.4SQL基础83.5SQL语句9第四章数据库的开发与设计104.1数据库需求分析1
8、04.2系统逻辑分析114.3数据库的连接134.3.1程序设计时与数据库的连接144.3.2程序运行时与数据库的连接14第五章组卷策略设计165.1自动组卷系统165.2自动组卷中随机数选取问题165.3自动组卷的具体实现175.4试卷难度的程序控制18第六章在PB中创建WORD文档206.1PB通过OLEOBJECT使用WORD206.2创建模板文件216.3编写程序22第七章系统