网站导航免费论文 原创论文 论文搜索 原创论文 网学软件 学术大家 资料中心 会员中心 问题解答 原创论文 大学论文导航 设计下载 最新论文 下载排行 原创论文
返回网学首页
网学联系
最新论文 推荐专题 热门论文 素材专题

基于DDE技术的Matlab语言上机考试平台的开发

来源:http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 15/10/02

网学网为广大网友收集整理了,基于DDE技术的Matlab语言上机考试平台的开发,希望对大家有所帮助!

论文编号:DQ310   论文字数:21399,页数:90

基于DDE技术的Matlab语言上机考试平台的开发

摘要
 随着科学技术在各个领域的深入发展,Matlab语言、LabVIEW编程系统等课程在高校的开设也越来越普遍。得益于计算机的普及和网络技术的发展,这些课程在教学过程中已开始实现理论与实际应用的结合,进入实验室和更多的实际运用领域。但是旨在检验教学成果的考试在无纸化的道路上却是举步维艰。在国外,一些发达国家网上考试己经得到蓬勃发展,已成为现代教育的有力补充,非常适合个性化学习。在国内,网上考试还处于试点阶段。目前进行的网上考试系统大体采用B/S(浏览器/服务器)和C/S(客户/服务器)两种模式。
 本文介绍基于Visual Basic语言、采用C/S方式的Matlab语言上机考试系统的设计与实现。在这个系统中,学生使用基于VB的专用网上考试软件进行答题。考试软件的职能是负责与数据库的通讯和管理各种考试操作。我们所开发的Matlab上机考试平台是一个功能强大的平台。考生所有的抽题、编程、调试、保存和交卷都在上机考试平台上完成,简化了考生的操作。教师平台可以实现阅卷、运行代码、组卷和成绩统计等功能,方便教师对学生考试的管理。该系统将应用于我校的Matlab语言课程考试,目的在于提高教学效果和教学质量,并且该系统对于程序设计类课程的考试改革具有极其重要的意义。

关键词:网上考试系统、Matlab、自动组卷、Visual Basic


Abstract

 With the development of science and technology in various fields in-depth, it is increasingly common that programming language courses, such as Matlab, Labview, and so on, are set up in colleges and universities With the popularity of computer and the development of network technology, the theories have been combined with the practice in the teaching process of these courses And it is applied not only in the laboratory, but also in more practical fields But, the paperless process of the examination aiming to test the teaching effectiveness is very slow The Online Test System has flourished in some developed countries Meanwhile, it has become necessary complements in the modern education And it is also very suitable for individual learning In domestic, the Online Test System is still trial period Currently, the online examination system is usually based on B/S (Browser /Server) or C/S (Client/Server) mode
 In this thesis, we will describe the design and implements of a Matlab Language Online Test System, which based on Visual Basic programming language and C/S mode In this system, candidates will use the above-mentioned, network-based test software to take the exam The functions of the test software are to response for communication with the database and management of the operation of the candidates The Matlab Language Online Test System we had developed is a powerful platform All procedures of an examination can be done, including randomly extracting questions, programming, debugging, saving and submitting the test paper, which simplifies the operation of the candidates On the teacher’s marking platform, teachers can mark papers, generate papers, run the code and record scores Therefore, it is convenient for teachers to manage the examination The system will be used to the Matlab Language Examination in our school aiming to improve teaching effectiveness and quality Meanwhile, it is extremely important to the reform of the Examination Process for the programming language courses

Keywords:  Online Test System, Visual Basic/VB, Matlab, automatic generation
目 录
摘要 ……………………………………………………………………………………………I
1  前言 ………………………………………………………………………………………1
 11  课题研究背景与意义………………………………………… ………………………1
 12  研究内容与成果…………………………………………………………………………2
 121  主要研究内容与目标…………………………………………………………2
 122  主要研究成果…………………………………………………………………3
2  相关技术背景  ……………………………………………………………………………3
 21  Visual Basic60 …………………………………………………………………………3
 211  Visual Basic60的语言特性 …………………………………………………3
 212  Visual Basic60的属性、方法和事件…………………………………………4
 22  C/S模式考试系统及其特点……………………………………………………………5
 23  DDE技术…………………………………………………………………………………5
 24  ADO技术………………………………………………………………………………6
 25  自动组卷算法 …………………………………………………………………………7
3  系统总体设计………………………………………………………………………………8
 31  系统概述…………………………………………………………………………………8
 311  系统研究的必要性 ……………………………………………………………8
 312  系统的软硬件平台 ……………………………………………………………9
 32  系统功能模块……………………………………………………………………………9
 321  系统应完成的主要功能介绍……………………………………………………9
 322  系统模块划分…………………………………………………………………10
4  Matlab语言与应用上机考试平台设计…………………………………………12
 41  数据库分析设计 ………………………………………………………………………12
 42  系统登录总界面设计 …………………………………………………………………16
 43  学生上机考试平台设计 ………………………………………………………………16
 431  学生考试登录界面设计………………………………………………………17
 432  学生信息核实界面设计………………………………………………………18
 433  学生考试界面设计……………………………………………………………19
 44  教师阅卷平台设计 ……………………………………………………………………21
 441  教师登录界面设计……………………………………………………………21
 442 教师阅卷界面设计 ……………………………………………………………23
 443  试卷生成界面设计……………………………………………………………25
 45  帮助信息界面 …………………………………………………………………………26
5  Matlab上机考试系统的调试 …………………………………………………………28
 51  系统登录总界面 ………………………………………………………………………28
 52  学生上机考试平台的调试………………………………………………………………29
 521 学生考试登录界面的调试………………………………………………………29
 522 学生信息核实界面的调试………………………………………………………32
 523 学生考试界面的调试……………………………………………………………33
 53  教师阅卷平台的调试 …………………………………………………………………33
 531 教师登录界面的调试……………………………………………………………33
 532教师阅卷界面的调试 ……………………………………………………………35
 533 教师组卷界面的调试………………………………………………………………36
6  Matlab上机考试系统应用与实践 ……………………………………………………38
 51  Matlab语言上机考试平台学生考试模块应用 …………………………………………38
 52  Matlab语言上机考试平台教师阅卷模块应用 ………………………………………40
7  总结……………………………………………………………………………………………42
致谢………………………………………………………………………………………………43
参考文献 ………………………………………………………………………………………44
附录 …………………………………………………………………………………………………45

基于DDE技术的Matlab语言上机考试平台的开发......
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号