mis for blended moocs on iitbombayx · 2016-06-01 · in php and runs on any os like unix, windows,...

46
MIS for Blended MOOCs on IITBombayX Submitted in partial fulfillment of the requirements of the degree of Master of Technology by Rajeev Kumar Gautam (Roll no. 13305R007) Supervisor: Prof. Deepak B. Phatak Department of Computer Science and Engineering Indian Institute of Technology Bombay 2015

Upload: others

Post on 06-Jul-2020

4 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

MIS for Blended MOOCs onIITBombayX

Submitted in partial fulfillment of the requirements

of the degree of

Master of Technology

by

Rajeev Kumar Gautam

(Roll no. 13305R007)

Supervisor:

Prof. Deepak B. Phatak

Department of Computer Science and Engineering

Indian Institute of Technology Bombay

2015

Page 2: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Contents

List of Figures iv

Abstract 1

1 Introduction 1

1.1 Definitions and Abbreviations . . . . . . . . . . . . . . . . . . . . . . . . . 1

1.2 Classroom Models . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1

1.2.1 Conventional Classroom . . . . . . . . . . . . . . . . . . . . . . . . 1

1.2.2 Flipped Classroom . . . . . . . . . . . . . . . . . . . . . . . . . . . 2

1.2.3 MOOCs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2

1.2.4 Blended MOOCs . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2

1.3 Need for a comprehensive information system . . . . . . . . . . . . . . . . 3

1.4 Problem statement . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3

2 Literature Survey 4

2.1 Open source LMS/CMSs . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4

2.2 LMS interoperability . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4

2.3 Moodle . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5

2.3.1 Integration with Moodle . . . . . . . . . . . . . . . . . . . . . . . . 5

2.3.1.1 Data Integration . . . . . . . . . . . . . . . . . . . . . . . 5

2.4 Open edX . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6

2.4.1 Open edX LMS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6

2.4.2 Open edX CMS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6

2.5 IITBombayX platform . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6

2.6 Current education system in India and how blended model will help . . . . 7

2.7 Blended MOOCs from IIT Bombay . . . . . . . . . . . . . . . . . . . . . . 7

i

Page 3: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Contents CONTENTS

2.8 Assessing Effectiveness of MIS . . . . . . . . . . . . . . . . . . . . . . . . . 7

2.9 System evaluation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8

3 Functional Requirements of Proposed System 9

3.1 Main objective . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9

3.2 Consolidation of proposed functionality . . . . . . . . . . . . . . . . . . . . 9

3.2.1 Admin’s Role . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9

3.2.2 Instructor’s Role . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10

3.3 Integration with Moodle . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11

3.4 Typical use cases . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12

3.4.1 Admin Role . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12

3.4.2 Teacher Role . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13

4 System Design 14

4.1 System view and Data Flow Diagram . . . . . . . . . . . . . . . . . . . . . 14

4.1.1 System view . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14

4.1.2 Data Flow Diagram . . . . . . . . . . . . . . . . . . . . . . . . . . 15

4.2 Modules and interfaces . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15

4.2.1 Admin Interfaces . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15

4.2.1.1 Department . . . . . . . . . . . . . . . . . . . . . . . . . . 15

4.2.1.2 Course . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15

4.2.1.3 Register Session . . . . . . . . . . . . . . . . . . . . . . . . 16

4.2.1.4 Course Assignment in Current Session . . . . . . . . . . . 16

4.2.2 Teacher Interfaces . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17

4.2.2.1 View . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17

4.2.2.2 Grade policy . . . . . . . . . . . . . . . . . . . . . . . . . 17

4.3 User Interfaces . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18

4.3.1 Admin UI . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18

4.3.2 Teacher UI . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18

4.4 Design and implementation . . . . . . . . . . . . . . . . . . . . . . . . . . 20

4.4.1 Database Design . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20

4.4.2 Technology Used . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21

4.4.3 MOOCs Assessment and Composite Mark sheet . . . . . . . . . . . 22

4.4.3.1 MOOC grade policy . . . . . . . . . . . . . . . . . . . . . 22

ii

Page 4: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

List of Figures CONTENTS

4.4.3.2 All MOOC assessment . . . . . . . . . . . . . . . . . . . . 23

4.4.3.3 Composite mark sheet with Moodle . . . . . . . . . . . . . 23

4.4.3.4 Composite mark sheet without Moodle . . . . . . . . . . . 24

4.5 Flow Chart . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25

4.6 Algorithm . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27

5 System Testing 28

5.1 Unit Testing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28

5.1.1 Teacher Module (Local Evaluation) . . . . . . . . . . . . . . . . . . 28

5.1.1.1 Create Grade Policy . . . . . . . . . . . . . . . . . . . . . 28

5.1.1.2 Upload Local Marks . . . . . . . . . . . . . . . . . . . . . 30

5.1.1.3 Update Local Marks . . . . . . . . . . . . . . . . . . . . . 30

5.1.2 Teacher Module (MOOCs Evaluation) . . . . . . . . . . . . . . . . 31

5.1.2.1 Enter or update Blended MOOCs weight . . . . . . . . . . 31

5.1.2.2 Upload Blended MOOCs Grade Policy . . . . . . . . . . . 31

5.1.2.3 Upload Blended MOOCs student’s marks . . . . . . . . . 31

5.1.2.4 Distribute Blended MOOCs Weightage . . . . . . . . . . . 32

5.1.3 Admin Module . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 33

5.1.3.1 Local System Set up . . . . . . . . . . . . . . . . . . . . . 33

5.2 Load Testing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 34

5.2.1 Load Testing Tool Used . . . . . . . . . . . . . . . . . . . . . . . . 35

5.3 Installation Testing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35

5.4 Logging . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36

6 Future Work and Conclusion 37

6.1 Login- Module . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37

6.2 Teacher- Module and Interface . . . . . . . . . . . . . . . . . . . . . . . . . 37

6.3 Conclusion . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37

iii

Page 5: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

List of Figures

3.1 Admin Role . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12

3.2 Teacher Role . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13

4.1 System View . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14

4.2 Level 0 Data Flow Diagram . . . . . . . . . . . . . . . . . . . . . . . . . . 15

4.3 Level 1 Data Flow Diagram (Part-1) . . . . . . . . . . . . . . . . . . . . . 16

4.4 Level 1 Data Flow Diagram (Part-2) . . . . . . . . . . . . . . . . . . . . . 17

4.5 Admin Dashboard . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18

4.6 Teacher Dashboard . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19

4.7 Teacher Mark Sheet Generation View . . . . . . . . . . . . . . . . . . . . . 20

4.8 ER diagram part-1.1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21

4.9 ER diagram part-1.2 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22

4.10 MOOC grading policy . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23

4.11 All MOOC assessment . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23

4.12 Composite Mark Sheet . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 24

4.13 Composite Mark Sheet . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25

4.14 Generate Composite Mark Sheet Flow Chart . . . . . . . . . . . . . . . . . 26

5.1 Load Testing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35

iv

Page 6: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Abstract

Multiple Institutes are partnering with IIT Bombay to offer blended MOOCs. Students

will study the online course on IITBombayX, and will also study the same course normally

in their Institute. Final grade will be based on the composite performance of students,

in the online assessment, and in the tests/exams at the Institute. This system will help

teachers of engineering colleges in India for assessment of blended MOOCs. The teachers

from various institutes participating in the blended MOOCs, will be able to generate

a composite mark sheet for the particular course by giving certain weightage to online

assessment along with their regular university assessment. For example, a certain portion

of online assessment, say 20% to 30% can get incorporated in final university exam grading.

This system can also be integrated with Moodle for generation of the grade report.

v

Page 7: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 1

Introduction

1.1 Definitions and Abbreviations

• Admin: Administrator, responsible for the efficient maintenance of the system.

• Instructor: Teaching course in engineering institute.

• CMS: Course Management System.

• LMS: Learning Management System.

1.2 Classroom Models

1.2.1 Conventional Classroom

Conventional Classroom is concerned with the teacher being the controller of the learning

environment. This provides face to face group interaction, permitting discussions, spon-

taneous questions, and synchronized attention of all students. This environment allows

the instructor to precisely determine the aims, content, organization, pace and direction

of a presentation. The instructor can arouse interest in a subject by giving some real life

examples. Today in engineering education, a course is typically taught in a semester long

duration, ending with a final examination. Scheme of marking/grading is predefined. En-

courages one-way communication, therefore, the lecturer must make a conscious effort to

become aware of student problems and student understanding of content without verbal

feedback.

1

Page 8: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 1. Introduction 2

1.2.2 Flipped Classroom

Flipped classroom is an instructional strategy and a type of blended learning that re-

verses the traditional educational arrangement. The flipped classroom intentionally shifts

instruction to a learner-centered model in which class time explores topics in greater depth

and creates meaningful learning opportunities, while educational technologies such as on-

line videos are used to deliver content outside of the classroom. Problem solving happens

at in lecture hour inside class room. One of the most prominent issues is the necessity for

students to have access to a computer and Internet in order to view the lectures. This is

particularly hard on students from low-income districts who already have limited access

to resources.

1.2.3 MOOCs

MOOCs stand for massive open online courses which aim for large scale interactive learn-

ing that is equivalent to classroom learning providing all the resources related to the

classroom learning that includes videos,slides handouts and quizzes [1]. The MOOCs are

a good way to reach a huge number of students and help them in learning online through

a variety of interactive resources. It is aimed at open access and unlimited participation.

Some example of MOOCs are Coursera, edX, IITBombayX, etc.

1.2.4 Blended MOOCs

Blended MOOCs takes advantage of all the learning techniques mentioned above [2]. The

Blended MOOCs can be used in engineering level institutions in India, where the course

running in the institute will take some part of content and assessment of a parallel running

course on MOOCs. The teacher in an institute may ask student to view video lecture

on a specific topic in a syllabus and the institute will consider the marks of assessment

conducted by MOOCs, the teacher can also conduct the assessment for that particular

content cover on MOOCs.

2

Page 9: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 1. Introduction 3

1.3 Need for a comprehensive information system

Multiple Institutes are partnering with IIT Bombay to offer blended MOOCs. Students

will study the online course on IITBombayX, and will also study the same course normally

in their Institute. Final grade will be based on the composite performance of students, in

the online assessment, and in the tests/exams at the Institute.

Design and implement MIS to support teachers in participating institute:

• To maintain information of students, and synchronize it with IITBombayX.

• To define parameter and weightage of all assessment, and calculate final grades.

• To interface with Moodle, if used locally, to import and export relevant data.

1.4 Problem statement

Implementation of an automated system which keeps a record of students marks and

generate the grades of students and also generate the composite mark sheet of blended

MOOCs and of institute.

The goal of this thesis is to allow the participating institute faculty to access the

online assessment marks of their students, and to factor the portion /percentage of marks

in their regular university grades. Further, the system will allow the instructor to generate

composite mark sheet, based on uploaded local assessments and online MOOC assessment.

3

Page 10: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 2

Literature Survey

2.1 Open source LMS/CMSs

The improvement in information and communication technologies and in the use of inter-

net brought lots of opportunities in field of education. The conventional classroom has

taken many form with the help of these technologies like flipped classroom, MOOCs, etc.

To support these new methodology, Learning Management Systems (LMSs) came in to

existence. We will discuss few of open source LMS like Moodle, ATutor, etc.

These LMS provide creation of content in different ways like audio, video, pdf, csv,

etc. They also have multiple language support for the different group of people in world,

that facility extend the reach of LMS on the globe. These LMS support different kinds of

online exams for the evaluation of students, and also provide a space for student interaction

called chat tool in which they can interact one-to-one or by forming groups.

2.2 LMS interoperability

LMSs are built on extensible frameworks where it can modify according to suitability of

users [3]. LMS is the backbone of e-learning.

• First generation At this time LMS design platform concentrated on the delivery

and interoperability of content designed for a specific purpose, such as a particu-

lar course. At that time, a range of standards emerged one of the standards was

interoperability at content level.

4

Page 11: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 2. Literature Survey 5

• Second generation During this generation the architecture of LMS design became

modular, where it can share the content and also share with other tool or LMS.

• Next generation In coming generation, the service oriented LMS will be built.

Which will provide integration with other service tools, and various kinds of envi-

ronments to work with. The next generation will not be monolithic, it will provide

many solutions in one product.

2.3 Moodle

Moodle is a learning and course management system for online learning. The name Moodle

stands for Modular Object-Oriented Dynamic Learning Environment. Moodle is written

in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL

and PostgreSQL, DB2, Microsoft SQL, etc. Moodle also supports Interoperability with

other web-based systems [4].

2.3.1 Integration with Moodle

Many institutes use Moodle internally to store academic records of students. Goal is to

integrate Moodle with our system, such that data import/export can be done through it.

For example, the student’s marks are stored in Moodle database, then system will import

marks of students from Moodle and generate a composite mark sheet of local assessment

and online MOOC assessment. In this way teachers won’t have to fill the marks again on

our system manually or create new CSV file for update. Moodle integration will provide

flexibility of data exchange.

2.3.1.1 Data Integration

Moodle and our system will share the common data format. Data will be given in form

of CSV file containing grade policy of course, marks of students, etc. Marks obtained by

students on MOOC can be downloaded by teacher from IITBpmbayX in form of CSV file.

Then, teacher will be able to upload these marks using our system to generate composite

mark sheet [5].

5

Page 12: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 2. Literature Survey 6

2.4 Open edX

According to definition in open edx documentation- ”The Open edX platform is a free–

and open source–course management system (CMS) that was originally developed by edX.

The Open edX platform is used all over the world to host Massive Open Online Courses

(MOOCs) as well as smaller classes and training modules” [6]

2.4.1 Open edX LMS

Open edx LMS is a place where learners can view course contents like video, quizzes,

slides, handouts, etc. On the other hand instructor can view the progress of students. In

this part students in interacts with the system and view the content, quizzes, etc. It also

has a discussion forum where students discuss on some topic.

2.4.2 Open edX CMS

”This is course authoring tool and studio authoring system. This is the system that an

instructor uses to build an online course. EdX studio is a CMS. A Django application

that uses MongoDB for content and MySQL/SQLite for other contents [6].”

2.5 IITBombayX platform

IITBombayX is built on the top of open edX to provide blended MOOCs, Where other

engineering colleges can participate in the blended MOOCs offered on the platform.The

feature that will content by well known professor online discussion groups, regular as-

sessment of learning as a learner progresses through a course, and online laboratories [7].

IITBombayX has been created for learners and institutions that that do not have quality

resource like teacher, environment, etc. The goal of of IITBombayX to provide quality

education, advance teaching and learning and expand access to education in engineering

institute in India [8]. IITBombayX will offer MOOCs through online medium.

6

Page 13: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 2. Literature Survey 7

2.6 Current education system in India and how blended

model will help

In recent years, the number of engineering colleges in India is increasing with very high

rate. But, the quality of education is missing due to some constraints like a fixed syl-

labus of course by the university. Due to a fixed syllabus, teacher is bound to teach

predefined topics and conduct predefined set of internal exams. Another reason may be

lack of academic exposure to the students due to not having a quality teacher or may

be technological hindrance. The quality of exams conducted by the university is also not

efficient, the majority of students mug up and write the exam and get marks without

understanding concepts.

2.7 Blended MOOCs from IIT Bombay

Providing the quality education in engineering colleges in India, IIT Bombay proposed a

blended MOOCs model where student will be part of their regular university course as well

as the blended MOOC. Practical sessions, exams, etc. will be conducted under supervision

of local teacher. Students will also complete the same course offered on IITBombayX [2].

The blended MOOCs also provides quizzes, programming assignments, etc. Teachers in

institutes will have freedom to include marks of these online quizzes, assignments, etc. in

their final grade sheet by giving some weightage [9].

2.8 Assessing Effectiveness of MIS

One of the main goals of the MIS is to develop information systems that will increase

efficiency to achieve this, MIS eases the process of any tedious task, and development

takes hierarchical approach to determine effectiveness of system.

• Level 0: This level deals with initial phase of development, for example complains

in database design, documentation quality, programming standards, etc. [10]

• Level 1: This level deals with resource allocation to project, for example time

difference, budget difference, etc.

7

Page 14: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 2. Literature Survey 8

• Level 2: This level deals with production capability of human resource assigns to

MIS development.

2.9 System evaluation

In blended model, teachers will have to combine marks of students for both class room

and MOOC. Currently they use Excel sheets to do this, which is not an efficient method.

To ease this process, an efficient system is needed which can generate composite mark

sheet by taking grades from both modes in some predefined format. This system should

run locally. In addition to that, integration with Moodle is also required. So, teachers

who already have local marks on Moodle, can directly enter them on new system. Our

goal is to build a system to cater above needs.

8

Page 15: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 3

Functional Requirements of

Proposed System

3.1 Main objective

Given the course marks of students, the system will generate an automated grade sheet

based on the course policy. Along with this, it has the option of integrating Blended

MOOCs marks based on instructor’s choice.

3.2 Consolidation of proposed functionality

3.2.1 Admin’s Role

• Admin will be created at the time of system installation.

• There will be only one Admin credential.

• It can add various department in system.

• Admin can deactivate/reactivate department.

• It can add courses in the department.

• It can also deactivate/reactivate courses.

• Admin will send registration link to instructors.

9

Page 16: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 3. Functional Requirements of Proposed System 10

• Admin will do mapping of various courses to various instructors at the beginning of

each semester.

• Admin can add/remove instructor.

3.2.2 Instructor’s Role

• Instructor Registration: The instructor need to register to use the system. The

registration link is provided on the system’s login page.

• Instructor can view all the courses registered against his/her name in current semester

as well as past semesters.

• Instructor will insert course grading policy of his/her registered course at the be-

ginning of current semester.

• System will import marks of students from LMS like-Moodle or it can browse marks

in the form of a CSV file from the local machine for specific locally conducted

assignments.

• Upload Blended MOOCs Grade Policy: The instructor will download blended MOOCs

grade policy in CSV format from the blended MOOCs website and will upload this

grade policy for the corresponding course.

• Upload Blended MOOCs Mark Sheet: The instructor will download blended MOOCs

mark sheet in CSV format from the blended MOOCs website and will upload this

grade policy for the corresponding course.

• Instructor has choice to incorporate Blended MOOCs weightage for final composite

mark sheet.

• Upload Institute Mark Sheet: The Instructor can upload the maximum marks for

assignment and marks obtained by students in the CSV file.

• Update Institute Mark Sheet: In case of any discrepancy, instructor can update the

marks of students.

• Instructor can give priority to some assignment conducted on Blended MOOCs.

10

Page 17: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 3. Functional Requirements of Proposed System 11

• Generate Final Mark Sheet: If the instructor chooses to include blended MOOCs

marks, then the final mark sheet will be a composite of local institute marks and

blended MOOCs marks otherwise final mark sheet will consist only of institute

marks.

3.3 Integration with Moodle

If any institute use open source LMS like Moodle this system will integrate with

Moodle and will get the student marks from Moodle and generates grade sheet. I

have installed and configure Moodle. Moodle database store, in MySQL database.

At the time of configuration I have created 4 courses, 4 teachers and 15 students.

The teacher is assigned some courses to teach in current semester. I have examined

database schema of Moodle where it stores marks of students. Moodle store total

marks of students in relation named mdl course completions. Accessing Moodle

marks of students from the system and generate a final mark sheet.

11

Page 18: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 3. Functional Requirements of Proposed System 12

3.4 Typical use cases

3.4.1 Admin Role

The admin will be responsible for maintaining the system within the institute after instal-

lation. Figure 3.1 shows the responsibility of the admin. For example, admin will register

the session and also assign semester course for teacher.

Figure 3.1: Admin Role

12

Page 19: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 3. Functional Requirements of Proposed System 13

3.4.2 Teacher Role

The teacher will maintain local marks of students in the system and download MOOC

marks in the form of CSV from IITBombayX and generate a composite mark sheet of

local marks and MOOC marks.

Figure 3.2: Teacher Role

13

Page 20: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 4

System Design

4.1 System view and Data Flow Diagram

4.1.1 System view

System will be installed locally with in the institute and teacher will use it for recording

and generating marks of students as shown in figure 4.1.

Figure 4.1: System View

14

Page 21: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 4. System Design 15

4.1.2 Data Flow Diagram

Teacher has a facility to upload local assessment and generate compositr mark sheet

comprises of local marks as well as online MOOC marks.

Figure 4.2: Level 0 Data Flow Diagram

4.2 Modules and interfaces

4.2.1 Admin Interfaces

4.2.1.1 Department

• Add Department: Add department in the system.

• Deactivate Department: Deactivate department in the system, if necessary.

• Reactivate Department: Reactivate the deactivated departments in the system, if

necessary.

• View Department: View current department in the system.

4.2.1.2 Course

• Add Courses: Add courses in department in the system.

• Deactivate Course: Deactivate course in the system, if necessary.

• Reactivate Course: Reactivate the deactivated course in the system, if necessary.

15

Page 22: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 4. System Design 16

Figure 4.3: Level 1 Data Flow Diagram (Part-1)

• View Course: View all the course or department wise in the system.

4.2.1.3 Register Session

• Register current session at beginning of each semester in the system.

• Can view all the registered session in the system.

4.2.1.4 Course Assignment in Current Session

• Do the mapping of course to Instructor at the beginning of each semester.

16

Page 23: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 4. System Design 17

Figure 4.4: Level 1 Data Flow Diagram (Part-2)

4.2.2 Teacher Interfaces

4.2.2.1 View

• Can view all the assigned courses in current semester.

• Can view all the assigned courses.

4.2.2.2 Grade policy

• Create: Create grade policy for each assigned course at beginning of each semester.

• View: Can view the created grade policy.

17

Page 24: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 4. System Design 18

4.3 User Interfaces

4.3.1 Admin UI

After login the admin will see the dashboard where admin can mange deparment, manage

course, etc,

Figure 4.5: Admin Dashboard

4.3.2 Teacher UI

The teacher in his/her dashboard will be able to see assigned courses for the current

semester and also all the previous courses, if any. As shown in the Figure 4.5, for mark

sheet generation module, teacher will be able to see create and view grade policy, give

weightage to blended MOOC, etc.

18

Page 25: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 4. System Design 19

Figure 4.6: Teacher Dashboard

19

Page 26: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 4. System Design 20

Figure 4.7: Teacher Mark Sheet Generation View

4.4 Design and implementation

While developing the system I have taken help from the Django documentation[11] with

MySQL as back end database and develop front page using technology HTML, CSS, etc.

4.4.1 Database Design

We use Django authentication tables to authenticate user. We are storing grade policy

for the current semester in grade policy table. To store blended MOOCs grade policy, we

have created a separate table, that table is used to populate all the evaluation of blended

MOOCs. We are also storing blended MOOCs weightage to be included. To store blended

MOOCs marks of students, we have created a different table that will be used to generate

final mark sheet.

20

Page 27: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 4. System Design 21

Figure 4.8: ER diagram part-1.1

4.4.2 Technology Used

• HTML: It is the main mark-up language for displaying web pages and other infor-

mation that can be displayed in a web browser.

• CSS: Cascading Style Sheets (CSS) is a style sheet language used for describing the

presentation of a document written in a markup language.

• JavaScript: It is a prototype-based scripting language that is dynamic, weakly typed

and has first-class functions and is mainly used for client side validation etc.

• AJAX: AJAX is the art of exchanging data with a server, and updating parts of a

web page - without reloading the whole page.

• MySQL: It is the world’s most used open source relational database management

21

Page 28: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 4. System Design 22

Figure 4.9: ER diagram part-1.2

that runs as a server providing multi-user access to a number of databases.

• Django/Python: Django is a free and open source web application framework, writ-

ten in Python, which follows the model-view-controller (MVC) architectural pattern.

• Bootstrap: Bootstrap is the most popular HTML, CSS and JavaScript framework

for developing responsive, mobile-first web sites.

• The Operating System used primarily in this project is Ubuntu 14.04.

4.4.3 MOOCs Assessment and Composite Mark sheet

4.4.3.1 MOOC grade policy

Figuere 4.8 shows the grading policy for a MOOC. It is a CSV file in which the first column

is the number of evaluations of an assignment, and the second column is weightage of an

assignment, and the third column is name of an exam, and the forth column contains the

22

Page 29: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 4. System Design 23

number of droppable evaluations of an assignment, and fifth column contains short label

for a respective assignment.

Figure 4.10: MOOC grading policy

4.4.3.2 All MOOC assessment

Figuere 4.9 shows the MOOC marks of all the students, who are registered for MOOC

course with IITBombayX and regular university course. The first line in the Figure shows

the maximum marks for the evaluation, second line contains the list of MOOC evaluations,

and from third line onwards contain marks obtained by each student in corresponding

evaluation.

Figure 4.11: All MOOC assessment

4.4.3.3 Composite mark sheet with Moodle

Figuere 4.12 shows the composite mark sheet of local marks and MOOC marks of all the

students, who are registered for blended MOOC course with IITBombayX along with their

23

Page 30: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 4. System Design 24

regular university course. Local marks of students are stored in Moodle database. Figure

shows the blended MOOC weight in this case it is 25(shown in figure). It also shows

weight distribution and maximum marks for each of the blended MOOC evaluation.

Figure 4.12: Composite Mark Sheet

4.4.3.4 Composite mark sheet without Moodle

Figuere 4.13 shows the composite mark sheet of local marks and MOOC marks of all

the students, who are registered for blended MOOC course with IITBombayX along with

their regular university course. Local marks of students are stored in system database.

24

Page 31: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 4. System Design 25

Figure 4.13: Composite Mark Sheet

4.5 Flow Chart

Teacher will login in system and upload grade policy and blended MOOC assessments in

system. Teacher will select weightage of MOOC and also select MOOC evaluations to be

included in composite mark sheet.

25

Page 32: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 4. System Design 26

Figure 4.14: Generate Composite Mark Sheet Flow Chart26

Page 33: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 4. System Design 27

4.6 Algorithm

I have designed a following algorithm to a generate composite mark sheet of MOOC

evaluations and local evaluations.

Step 1: Start

Step 2: Teacher login into the system.

Step 3: Teacher selects weightage of MOOC

Step 4: If weightage > 0

Upload MOOC grade policy

Upload MOOC evaluatios

Select MOOC evaluations to be included in final mark sheet

Step 5: If Moodle used for local storage

Read MOOC assessments from system

Read local assessments from Moodle database

Output a composite mark sheet in a form of CSV file

Step 6: Else

Read MOOC assessments from system

Read local assessments from system database

Output a composite mark sheet in a form of CSV file

Step 7: Stop

27

Page 34: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 5

System Testing

5.1 Unit Testing

5.1.1 Teacher Module (Local Evaluation)

5.1.1.1 Create Grade Policy

28

Page 35: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 5. System Testing 29

Step Test Steps Test Data Expected Result Status

1Enter value of abbr

columnEX, QZ Successfully created Pass

2Enter value of abbr

column2, E1

*ERROR-Abbreviation

column should contain

ONLY uppercase alphabets

of Maximum length 4

Fail

3Enter value of assign-

ment column

Mid Sem, End

SemSuccessfully created Pass

4Enter value of assign-

ment columnMid-Sem, End1 Do not use hyphen (-) Fail

5Enter value of No. of

assignment column1 to 99 Successfully created Pass

6Enter value of No. of

assignment column-1, 0, 101, 500

*ERROR- No.of Assign-

ments field value should be

greater then ZERO and less

then 100.

Fail

7Enter value of No. of

Best Score column

<= No. of

assignment col-

umn

Successfully created Pass

8Enter value of No. of

Best Score column

>No. of assign-

ment column

*ERROR- No.of Assign-

ments field value can not be

less then No. of Best Score

field value.

Fail

9Enter value of No. of

assignment column-1, 0, 101, 500, kl

*ERROR- No. of Best

Score column value should

be only positive INTEGER

greater then zero.

Fail

10Enter value of Weight

column

Weight column

Sum = 100Successfully created Pass

11Enter value of Weight

column

Weight column

Sum != 100

*ERROR-: Weight column

SUM should be exactly 100.Fail

29

Page 36: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 5. System Testing 30

5.1.1.2 Upload Local Marks

Step Test Steps Test Data Expected Result Status

1 Upload File Correct fileYou have successfully up-

loaded marksPass

2 Upload File Not .CSV file*ERROR-: Uploaded file is

not .CSV file.Fail

3 Upload File File already Uploaded

*ERROR-: Marks for this

evaluation is already Up-

loaded !!!

Fail

4 Upload File Max marks < marks obtain < 0

*ERROR-: Uploaded file

contain maximum marks

less the obtain marks or ob-

tain marks less then zero at

given line no

Fail

5.1.1.3 Update Local Marks

Step Test Steps Test Data Expected Result Status

1 Update student marks 10,5You have successfully up-

date the marksPass

2 Update student marks -5, > Max marks

*ERROR-: Update marks

is greater then Max marks

or less then zero for evalua-

tion.

Fail

30

Page 37: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 5. System Testing 31

5.1.2 Teacher Module (MOOCs Evaluation)

5.1.2.1 Enter or update Blended MOOCs weight

Step Test Steps Test Data Expected Result Status

1

Enter or update

Blended MOOCs

marks

0 to 100

You have successfully se-

lected or update weight of

Blended MOOC

Pass

2

Enter or update

Blended MOOCs

marks

other values

*ERROR-: Number range

should be between 0 and

100 both inclusive.

Fail

5.1.2.2 Upload Blended MOOCs Grade Policy

Step Test Steps Test Data Expected Result Status

1Upload Blended

MOOCs grade policyValid .CSV file

You have successfully sub-

mitted blended MOOCs

grading policy for given

course.

Pass

2Upload Blended

MOOCs grade policyNot .CSV file

*ERROR-: Uploaded file is

not .CSV file.Fail

5.1.2.3 Upload Blended MOOCs student’s marks

31

Page 38: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 5. System Testing 32

Step Test Steps Test Data Expected Result Status

1Upload Blended

MOOCs mark sheetValid .CSV file

You have successfully sub-

mitted blended MOOCs

student’s marks for given

course.

Pass

2Upload Blended

MOOCs mark sheetNot .CSV file

*ERROR-: Uploaded file is

not .CSV file.Fail

3Upload Blended

MOOCs mark sheetf4,th

*ERROR-: Students marks

can not be other then Num-

ber and NA for given Roll

number.

Fail

3Upload Blended

MOOCs mark sheet<0

*ERROR-: Students marks

can not be less then zero for

given Roll number.

Fail

4Upload Blended

MOOCs mark sheet< Max marks

*ERROR-: Students marks

can not be more then max

marks for given Roll num-

ber.

Fail

5.1.2.4 Distribute Blended MOOCs Weightage

32

Page 39: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 5. System Testing 33

Step Test Steps Test Data Expected Result Status

1Distribute Blended

MOOCs Weightage

Distribute weight sum

= submit weight

You have successfully

submitted weight of your

blended MOOCs grading

policy.

Pass

2Distribute Blended

MOOCs WeightageEmpty value

**ERROR-: Enter valid

number greater then zero

!!!!!

Fail

3Distribute Blended

MOOCs Weightage

Distribute weight sum

!= submit weight

*ERROR-: Your dis-

tributed weight sum should

be equal to given some. It

is now some value

Fail

5.1.3 Admin Module

5.1.3.1 Local System Set up

• Create Department

Step Test Steps Test Data Expected Result Status

1Create Department

Name

Computer Science and

Engineering, Mechan-

ical Engineering

You have successfully added

some department.Pass

2Create Department

Name2cse

*ERROR-: Department

name should start from

character only

Fail

3Create Department

AbbreviationCSE, ME

You have successfully added

some department.Pass

4Create Department

Abbreviation2cse, −ME

*ERROR-: Department ab-

breviation should start from

character only

Fail

• Create Course

33

Page 40: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 5. System Testing 34

Step Test Steps Test Data Expected Result Status

1 Create Course NameData Structure, Ther-

modynamics

You have successfully added

some course.Pass

2 Create Course Name −data structure

*ERROR-: Course name

should start from character

only

Fail

3 Create Course Code CS101, ME209You have successfully added

some course code.Pass

4 Create Course Name already register*ERROR-: Course name al-

ready registerFail

5 Create Course Code already register*ERROR-: Course code al-

ready registerFail

• Semester Course Allocation

Step Test Steps Test Data Expected Result Status

1 Allocate Courseunique course, teacher

pair

You have successfully allo-

cate course to the teacher.Pass

2 Allocate Courseunique course, teacher

pair

*ERROR- Pair of selected

course and teacher for this

semester is already allo-

cated.

Fail

5.2 Load Testing

”Load testing is the process of putting demand on a software system or computing device

and measuring its response. Load testing is performed to determine a system’s behaviour

under both normal and anticipated peak load conditions.”

I have done load testing of the system using an open source load testing tool Locust. I

have applied load on the system from 0 to 1500 users, the response time shown in the

graph. I have tested all the interfaces of a system that interacts concurrently with the

database. As shown in the graph, as number of user increases response time also increases.

34

Page 41: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 5. System Testing 35

0

100

200

300

400

500

600

700

800

0 200 400 600 800 1000 1200 1400

Response T

ime(m

s)

Number of Users

MedianAverage

Min

Figure 5.1: Load Testing

5.2.1 Load Testing Tool Used

Locust [12]:- An open source load testing tool.

5.3 Installation Testing

Installation testing is examines that the software system is successfully installed and it

is working as anticipated after installation. I have done installation testing on a testing

machine where I have installed all the required software package, database, dump file into

a database, etc. To smoothly install the system I have created Makefile.

35

Page 42: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 5. System Testing 36

5.4 Logging

Logging module is also created where all the error and exception log generated by the

system will be recorded. This will help to debug the problem if there any problem occurs

in the system. To implement logging facility I have used Django’s logger module.

36

Page 43: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 6

Future Work and Conclusion

6.1 Login- Module

• Send confirmation link when instructor register first time.

• A module for forgot password will be integrated with a valid register email id.

6.2 Teacher- Module and Interface

• Re-use Grade Policy if Instructor wants to continue with any one of previously

generated grade policy, then the instructor can forward one of defined grade policy.

• Grade Generation Once the final mark sheet is generated, instructor will enter a

range of marks for specific grades and will get a final grade sheet.

6.3 Conclusion

The blended MOOCs requires the composition of institute marks and MOOCs marks.

So, to make this process easy and efficient for the blended MOOCs partner teachers. We

have built a system which stores marks of institute evaluations and takes MOOCs marks

in the form of CSV file and generate a composite mark sheet. The teachers, who are not

the part of blended MOOCs can also use this system to keep records of students marks.

The system will install and runs locally in engineering colleges in India.

37

Page 44: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Chapter 6. Future Work and Conclusion 38

Blended MOOCs require the composite nature of in-classroom learning and online

participation. To this effect, both evaluation i.e. classroom as well as online evaluation,

are necessary for the complete assessment of students. Regular assessments in different

forms (online quizes, in-classs exams) make the teacher aware of the current subject

understanding of students in a class.

38

Page 45: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

References

[1] Massive open online course, . URL https://en.wikipedia.org/wiki/Massive_

open_online_course. Retrieved on 2015-9-20.

[2] Deepak B Phatak. Adopting moocs for quality engineering education in india. In

Proceedings of the International Conference on Transformations in Engineering Ed-

ucation, pages 11–23. Springer, 2015.

[3] Declan Dagger, Alexander O’Connor, Seamus Lawless, Eddie Walsh, and Vincent P

Wade. Service-oriented e-learning platforms: From monolithic systems to flexible

services. Internet Computing, IEEE, 11(3):28–35, 2007.

[4] Moodle, . URL https://en.wikipedia.org/wiki/Moodle. Retrieved on 2015-9-15.

[5] Ricardo Queiros, Lino Oliveira, Jose Paulo Leal, and Fernando Moreira. Integration

of eportfolios in learning management systems. In Computational Science and Its

Applications-ICCSA 2011, pages 500–510. Springer, 2011.

[6] About open edx, . URL https://open.edx.org/about-open-edx. Retrieved on

2015-10-8.

[7] Definition iitbombatx. URL https://www.iitbombayx.in/. Retrieved on 2015-10-7.

[8] About iitbombatx, . URL https://www.iitbombayx.in/about. Retrieved on 2015-

10-7.

[9] Consultation conclave on blended moocs. URL http://www.it.iitb.ac.in/frg/

wiki/images/9/9a/Minutes_Consultation_Conclave_on_Blended_MOOCs.pdf.

Retrieved on 2015-9-23.

39

Page 46: MIS for Blended MOOCs on IITBombayX · 2016-06-01 · in PHP and runs on any OS like Unix, Windows, etc. It supports database like MySQL and PostgreSQL, DB2, Microsoft SQL, etc. Moodle

Bibliography 40

[10] Scott Hamilton and Norman L Chervany. Evaluating information system

effectiveness-part i: Comparing evaluation approaches. MIS quarterly, pages 55–69,

1981.

[11] Django documentation. URL http://media.readthedocs.org/pdf/django/1.8.

x/django.pdf. Retrieved on 2015-8-30.

[12] Locust documentation. URL http://locust.io/. Retrieved on 2016-5-20.

40