-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoverview.html
211 lines (163 loc) · 7.53 KB
/
overview.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
<html>
<head>
<title>Project Proposal</title>
<link rel="stylesheet" type="text/css" href="Neontext.css"></link>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
</head>
<style type="text/css">
<!-- body {
color: rgb(255, 189, 67);
font-size: medium;
}
div.p {
margin-top: 7pt;
}
td div.comp {
margin-top: -0.6ex;
margin-bottom: -1ex;
}
td div.comb {
margin-top: -0.6ex;
margin-bottom: -.6ex;
}
td div.norm {
line-height: normal;
}
td div.hrcomp {
line-height: 0.9;
margin-top: -0.8ex;
margin-bottom: -1ex;
}
td.sqrt {
border-top: 2 solid black;
border-left: 2 solid black;
border-bottom: none;
border-right: none;
}
table.sqrt {
border-top: 2 solid black;
border-left: 2 solid black;
border-bottom: none;
border-right: none;
}
h1 {
color: aqua;
}
h2 {
color: red;
}
h3 {
color: greenyellow;
}
h4 {
color: bisque;
}
h4 a {
color: aliceblue;
}
.card {
width: 80%;
}
-->
</style>
<meta http-equiv="Content-Type" content="text/html; charset=iso-latin-1" />
</head>
<body>
<div class="header">
<a href="index.html" class="logo">
<center>
<font class="neonText">TruPen: An Online Examination System</font>
</center>
</a>
<div class="header-right">
<a class="active" href="overview.html">Overview</a>
<a href="team.html">Team</a>
<a href="project_components.html">Project Components</a>
</div>
</div>
<br>
<br><br><br><br>
<div class="card w3-container w3-animate-bottom">
<div class="container">
<p>
<p>
<a name="toc.1">
<h1>1 Introduction</h1>
Now-a-days, Online examination system has become popular for competitive examinations because of its unique features such as auto-evaluation, speed and accuracy. Moreover, it also helps environments by reducing the use of paper. In such a system, students
are asked to select answers from multiple options given for a single question. Likewise, there are several questions which appear in the students’ systems. The questions and multiple options are saved in a database along with desired
answers. Some single line text input quetions are also being implemented. Typically, a student can edit an answer after saving it, however, editing cannot be done after submitting the answer. There is another user -- administrator.
The administrator can create, modify and delete questions and accordingly, the question is updated in the system.
<br>
<p>
<a name="toc.1.1">
<h2>1.1 Inputs</h2>
<ul>
<li> Subject Information with Code, so that all subjects can be identified using unique codes</li>
<li> User Information</li>
<li> If Student- Student Information (Name, Roll No, Email Address, Contact Number, Password)</li>
<li> If Administrator (Email Address, Password)</li>
<li> Set of Questions with multiple answers for each stored in a database along with desired answers.</li>
</ul>
</a>
</p>
<p>
<a name="toc.1.2">
<h2>1.2 Operations</h2>
<ol>
<li> Administrator</li>
<ul>
<li> Log-In</li>
<li> CREATE, MODIFY or DELETE tests and quetions. Accordingly, the question set must be updated.</li>
<li> Verify information of newly registered students.</li>
<li> Change grades if mal-practices are detected.</li>
<li> Log-Out</li>
</ul>
<li> Student
<ul>
<li> Log-In</li>
<li> Navigate through subjects and tests.</li>
<li> An interactive chat bot to resolve common queries.</li>
<li> A feedback and suggestions tab.</li>
<li> Answer the questions – SAVE and SUBMIT</li>
<li> Log-Out (Automatically logged out after Timeout)</li>
</ul>
</li>
</ol>
<p>
</a>
</p>
<p>
<a name="toc.1.3">
<h2>1.3 Outputs</h2>
<ul>
<li> Dashboard contains list of courses/subjects.</li>
<li> Each subject can have an announcement tab.</li>
<li> Navigate through answers/explainations after the students have attempted the test.</li>
<li> Questions can be jumbled and can have different values for different students.</li>
<li> Display the result in DESCENDING order according to obtained marks with Roll Number</li>
<li> The result is also saved into a database for future use.</li>
</ul>
</a>
</p>
<p>
<a name="toc.1.4">
<h2>1.4 Constraints</h2>
<ul>
<li> All users MUST register themselves into the system </li>
<li> Same set of questions should appear to all students.</li>
<li> Log-In information contains only Email Address and Password.</li>
<li> After clicking on SUBMIT, selected answers cannot be changed.</li>
<li> After clicking on SAVE, selected answers can be changed.</li>
<li> Preventing common mal-practices without breach of privacy.</li>
<li> Tests can be attempted only once except for a trial quiz.</li>
</ul>
</a>
</p>
</p>
</p>
</p>
</div>
</div>
<br><br><br><br><br>
</body>
</html>