summaryrefslogtreecommitdiff
path: root/testapp/docs/sample_questions.py
diff options
context:
space:
mode:
authorPrabhu Ramachandran2014-05-18 00:20:14 +0530
committerPrabhu Ramachandran2014-05-18 00:20:14 +0530
commit3d0b69caf6b94a1afe95fef2787929c14afdb485 (patch)
tree0d58ceacdd7d5f6c6ea1fb2eabc889c552bebdd0 /testapp/docs/sample_questions.py
parent70b73660f9c10174e318d570a820ca0cc01f8d5f (diff)
parent4f33c2f53144e6aa101f43947c07cdc7634325a8 (diff)
downloadonline_test-3d0b69caf6b94a1afe95fef2787929c14afdb485.tar.gz
online_test-3d0b69caf6b94a1afe95fef2787929c14afdb485.tar.bz2
online_test-3d0b69caf6b94a1afe95fef2787929c14afdb485.zip
Merge pull request #15 from prathamesh920/load_exam_command
load_exam command modified to accept tags.
Diffstat (limited to 'testapp/docs/sample_questions.py')
-rw-r--r--testapp/docs/sample_questions.py27
1 files changed, 21 insertions, 6 deletions
diff --git a/testapp/docs/sample_questions.py b/testapp/docs/sample_questions.py
index aa7f239..45bb8a8 100644
--- a/testapp/docs/sample_questions.py
+++ b/testapp/docs/sample_questions.py
@@ -1,7 +1,7 @@
from datetime import date
questions = [
-Question(
+[Question(
summary='Factorial',
points=2,
type="python",
@@ -15,8 +15,11 @@ For example:<br/>
assert fact(0) == 1
assert fact(5) == 120
'''),
-
-Question(
+#Add tags here as a list of string.
+['Python','function','factorial'],
+],
+
+[Question(
summary='Simple function',
points=1,
type="python",
@@ -28,7 +31,11 @@ import math
assert sqr(3) == 9
assert abs(sqr(math.sqrt(2)) - 2.0) < 1e-14
'''),
-Question(
+#Add tags here as a list of string.
+['Python','function'],
+],
+
+[Question(
summary='Bash addition',
points=2,
type="bash",
@@ -38,7 +45,11 @@ Question(
docs/sample.sh
docs/sample.args
'''),
-Question(
+#Add tags here as a list of string.
+[''],
+],
+
+[Question(
summary='Size of integer in Python',
points=0.5,
type="mcq",
@@ -51,7 +62,11 @@ None of the above
''',
test = "No Limit"
),
-]
+#Add tags here as a list of string.
+['mcq'],
+],
+
+] #list of questions ends here
quiz = Quiz(start_date=date.today(),
duration=10,