-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage2A_rules.html
99 lines (79 loc) · 3.33 KB
/
page2A_rules.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
<!DOCTYPE html>
<html>
<head>
<title>Help</title>
<meta name = "viewport" content = "width = device-width, initial-scale = 1.0">
<link href = "bootstrap/css/bootstrap.min.css" rel = "stylesheet">
<script src = "https://code.jquery.com/jquery.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src = "bootstrap/js/bootstrap.min.js"></script>
<script src="js/formActivity.js"></script>
<style>
.jumbotron{
padding-top: 2%;
padding-bottom: 2%
}
</style>
<style>
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<div class = "bg-info text-white jumbotron text-center">
<h1>Grading System</h1>
</div>
<div class="container-fluid">
<h2>Evaluation criteria:</h2> <br>
<ul>
<li>"This grading system is determined by considering <b>Bloom's Taxanomy [BT]</b>, <b>Course Coutcomes [CO]</b>,<b>Question Types [T]</b>"</li> <br>
<li>The grading system adapt a six point scale which means awarding grades from <b>A</b> to<b> F </b>. This will evaluate the quality of question paper.</li><br>
<li>It is based on Two parameter:</li><br>
<ol>
<li>Absolute </li><br>
<li>Percentile </li>
</ol>
<br>
<li>Considered parameters for determining of good question paper :</li>
Grade<br>
1. BT = && T= && CO= A <br>
2. BT = && T= && CO!= B<br>
3. BT= && T!= && CO= C<br>
4. BT= && T!= && CO!= D <br>
5. BT!= && T= && CO= E <br>
6. BT!= && T!= && CO!= F
<li>Grading Scale : </li> <br>
<table>
<tr>
<th>Grade</th>
<th>Grade Point</th>
</tr>
<tr>
<td>A</td>
<td>10</td>
</tr>
<tr>
<td>B</td>
<td>9</td>
</tr>
<tr>
<td>C</td>
<td>8</td>
</tr>
<tr>
<td>D</td>
<td>7</td>
</tr>
<tr>
<td>E</td>
<td>6</td>
</tr>
<tr>
<td>F</td>
<td>5</td>
</table>
</ul>
</div>
</body>
</html>