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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
|
=========
Questions
=========
Setting up questions
--------------------
Setting up questions is the most important part of the Yaksh experience. Questions can be of multiple types i.e Multiple choice questions (MCQ), Multiple correct choices (MCC), Coding questions, assignment upload, fill in the blanks.
To set up a question click on the questions link in the navigation bar.
.. image:: ../images/questions.jpg
To add a question click on the **Add Question** button
.. image:: ../images/add_question.jpg
* **Summary**- Summary or the name of the question.
* **Language** - Programming language on which the question is based.
* **Type** - Type of the question. i.e Multiple Choice, Multiple Correct Choice, Code, Assignment Upload etc.
* **Points** - Points is the marks for a question.
* **Description** - The actual question description in HTML format.
.. note:: To add code snippets in questions please use html <code> and <br> tags.
* **Tags** - Type of label or metadata tag making it easier to find specific type of questions.
* **Solution** - Add solution for the question.
* **Snippet** - Snippet is used to give any default value or default code or command. This will be displayed in the students answer form. This is used only for code questions.
* **Minimum time(in minutes)** - This value can be set for questions which will be added to a Exercise. Exercise time will depend on this time.
* **Partial Grading** - Click this checkbox to enable partial grading feature.
* **Grade Assignment Upload** - Click this checkbox if the assignment upload based question needs evaluation. Evaluation is done with **Hook based TestCase** only.
* **File** - File field is used to upload files if there is any file based question.
For e.g. The question is reading a file say **dummy.txt** and print its content.
You can then upload a file **dummy.txt** which will be available to the student while attempting the quiz.
* Some file features:
1. To delete a file click the delete checkbox and click on **Delete Selected Files button**.
2. To extract a file for e.g. say **dummy.zip** click the extract checkbox and click on Save button.
If **extract** is selected, the file will be extracted while checking
the student submitted code.
3. To hide any file from student click the hide checkbox and click on Save button.
.. Note:: We only support **zip** extension for **extract file** feature.
How to write Test cases
-----------------------
The following explains different methods to write test cases.
* **Create Standard Test Case**
Select Standard from Add Test Case field. Sample Testcases are given for all
languages.
* **For Python:**
.. image:: ../images/python_standard_testcase.jpg
:width: 80%
In the test case field write a python assert to check the user code.
For e.g. ::
assert add(1, 2) == 3
for program of addition.
* **For C, C++:**
.. image:: ../images/cpp_standard_testcase.jpg
:width: 80%
Consider a Program to add three numbers.
The code in the Test case field should be as follows: ::
#include <stdio.h>
#include <stdlib.h>
extern int add(int, int, int);
template <class T>
void check(T expect,T result)
{
if (expect == result)
{
printf("\nCorrect:\n Expected %d got %d \n",expect,result);
}
else
{
printf("\nIncorrect:\n Expected %d got %d \n",expect,result);
exit (1);
}
}
int main(void)
{
int result;
result = add(0,0,0);
printf("Input submitted to the function: 0, 0, 0");
check(0, result);
result = add(2,3,3);
printf("Input submitted to the function: 2, 3, 3");
check(8,result);
printf("All Correct\n");
}
Assuming Students answer to be as below: ::
int add(int a, int b, int c)
{
return a+b+c;
}
.. Note:: 1. In the above example, **add** in the main function is obtained from student code.
2. Please make sure that the student code function and testcase calling function should be same which in this case is **add**.
* **For Java:**
.. image:: ../images/java_standard_testcase.jpg
:width: 80%
Consider a Program to find square of a number.
The code in the Test case Field should be as follows: ::
class main
{
public static <E> void check(E expect, E result)
{
if(result.equals(expect))
{
System.out.println("Correct:\nOutput expected "+expect+" and got "+result);
}
else
{
System.out.println("Incorrect:\nOutput expected "+expect+" but got "+result);
System.exit(1);
}
}
public static void main(String arg[])
{
Test t = new Test();
int result, input, output;
input = 0; output = 0;
result = t.square_num(input);
System.out.println("Input submitted to the function: "+input);
check(output, result);
input = 5; output = 25;
result = t.square_num(input);
System.out.println("Input submitted to the function: "+input);
check(output, result);
input = 6; output = 36;
result = t.square_num(input);
System.out.println("Input submitted to the function: "+input);
check(output, result);
}
}
Assuming Students answer to be as below: ::
class Test
{
int square_num(int num)
{
return num*num;
}
}
.. Note:: 1. For Java, class name should always be **main** in testcase.
2. In the above example, **Test** is the class of student's code.
3. Please make sure that the student's code class and calling class in testcase is always **Test**. (square_num is the function inside Test class.)
* **For Bash:**
.. image:: ../images/bash_standard_testcase.jpg
:width: 80%
In **Test case** Field write your bash script.
For e.g. the question is to move to a particular directory and read a file
**test.txt**
The Test case code shown is: ::
cd $1
cat $2
In **Test case args** Field type your Command line arguments.
In this case the test case args are: ::
somedata/ test.txt
.. Note:: 1. **Test case args** field is used only for bash.
2. Each argument should be separated by **space**.
3. This field can be left blank.
Check Delete Field if a test case is to be removed.
Finally click on Save to save the test case.
* **Create Standard Input/Output Based Test Case**
Select StdIO from Add Test Case field.
.. image:: ../images/stdio_testcase.jpg
:width: 80%
In Expected input field, enter the value(s) that will be passed to the students' code through a standard I/O stream.
.. note:: If there are multiple input values in a test case, enter the values in new line.
In Expected Output Field, enter the expected output for that test case. For e.g type 3 if the output of the user code is 3.
Setting up Standard Input/Output Based questions is same for all languages.
* **Create MCQ or MCC Based Test Case**
Select MCQ/MCC from Add Test Case field.
Fig (a) showing MCQ based testcase
.. image:: ../images/mcq_testcase.jpg
:width: 80%
Fig (b) showing MCC based testcase
.. image:: ../images/mcc_testcase.jpg
:width: 80%
In Options Field type the option check the correct checkbox if the current option is correct and click on Save button to save each option.
For MCC based question, check the correct checkbox for multiple correct options.
* **Create Hook based Test Case**
Select Hook from Add Test Case field.
In Hook based test case type, moderator is provided with a evaluator function
called **check_answer** which is provided with a parameter called **user_answer**.
**user_answer** is the code of the student in string format.
.. note :: For assignment upload type question there will be no **user answer** File uploaded by student will be the answer.
Suppose the student needs to upload a file say **new.txt** as assignment.
Sample Hook code for this will be as shown below. ::
def check_answer(user_answer):
''' Evaluates user answer to return -
success - Boolean, indicating if code was executed correctly
mark_fraction - Float, indicating fraction of the weight to a test case
error - String, error message if success is false
In case of assignment upload there will be no user answer '''
success = False
err = "Incorrect Answer" # Please make this more specific
mark_fraction = 0.0
try:
with open('new.txt', 'r') as f:
if "Hello, World!" in f.read():
success = True
err = "Correct Answer"
mark_fraction = 1.0
else:
err = "Did not found string Hello, World! in file."
except IOError:
err = "File new.txt not found."
return success, err, mark_fraction
A moderator can check the string for specific words in the user answer
and/or compile and execute the user answer (using standard python libraries) to
evaluate and hence return the mark fraction.
.. image:: ../images/hook_testcase.jpg
:width: 80%
* **Create Integer Based Test Case**
Select **Answer in Integer** from Type field.
Select Integer from Add Test Case field.
In the Correct field, add the correct integer value for the question.
.. image:: ../images/integer_testcase.jpg
:width: 80%
* **Create String Based Test Case**
Select **Answer in String** from Type field.
Select **String** from Add Test Case field.
In the **Correct** field, add the exact string answer for the question.
In **String Check** field, select if the checking of the string answer
should be case sensitive or not.
.. image:: ../images/string_testcase.jpg
:width: 80%
* **Create Float Based Test Case**
Select **Answer in Float** from Type field.
Select **Float** from Add Test Case field.
In the **Correct** field, add the correct float value for the question.
In the **Error Margin** field, add the margin of error that will be allowed.
.. image:: ../images/float_testcase.jpg
:width: 80%
Features in Question
--------------------
* **Download Questions**
Select questions from the list of questions displayed on the Questions page. Click on the Download Selected button to download the questions. This will create a zip file of the Questions selected.
* **Upload Questions**
Click on the browse button. This will open up a window. Select the zip file of questions and click Ok and then click on Upload file button, questions will be uploaded and displayed on the Questions page.
Zip file should contain **questions_dump.yaml** from which questions will be loaded.
Zip file can contain files related to questions.
* **Test Questions**
Select questions from the list of question displayed on the Questions page. Click on Test selected button. This will take you to a quiz with the selected questions.
.. Note:: This will not create an actual quiz but a trial quiz. This quiz is hidden from the students and only for moderator to view. You can delete the quiz from moderator's dashboard.
* **Filter Questions**
You can filter questions based on type of question, language of question or marks of question.
1. Click Select Question Type to filter question based on type of the question.
2. Click Select Language to filter question based on language of the question.
3. Click Select marks to filter question based on mark of the question.
* **Search by tags**
1. You can search the questions by tags added during question creation.
2. Click on the Available tags to view all the available tags. Select any tag from available tags and click **Search**.
3. Enter the tag in the search bar and click on **Search** respective questions will be displayed.
|