summaryrefslogtreecommitdiff
path: root/testapp/exam/models.py
AgeCommit message (Collapse)Author
2014-07-15change made to subtract naive and aware datetimesprathamesh
2014-06-27Merge branch 'model_modification' into multiple_correct_typeprathamesh
2014-06-27Mutiple correct choices question type added.prathamesh
2014-06-27Made the minor changeprathamesh
2014-06-26Made pass field as boolean field.prathamesh
And changed variables to lowercases
2014-06-26changes as per suggestionprathamesh
2014-06-25Added test for new model fields and new methods created in models.prathamesh
2014-06-24modification in modelsprathamesh
Added shuffle option in the question paper. Added language field, passing criteria and prerequisite quiz in quiz. Added pass/fail result and percentage field in the answerpaper.
2014-06-22Made changes to update_total_marks methodprathamesh
2014-06-20Changes made as per the suggestions.prathamesh
2014-06-16Models modified.prathamesh
QuestionPaper model modified for generating random questions. Added language field to Question model. Removed tags from Quiz model. Template and javascript for Add and Edit questions modified. Added test cases for models.
2014-06-05Merge branch 'scilab_check' into scilab_autocheckprathamesh
Conflicts: testapp/exam/forms.py
2014-05-12Files modified according to the pep8 coding standard.prathamesh
2014-03-03Autochecks scilab function.prathamesh
A method is created that checks the scilab function submitted by the student. The method removes the terminating commands in scilab. If errors are present then it returns error, else provides input to the function and checks for the expected output. If function returns correct output for all the inputs then the function is graded correct, else throws the error message.
2013-07-08Added few questions. Made changes to fix minor bugs which were found during ↵prathamesh
testing.
2013-07-03Merge branch 'fresh_java' of https://github.com/prathamesh920/online_test ↵prathamesh
into deploy_server Conflicts: testapp/templates/exam/question.html
2013-07-03merged javaprathamesh
2013-07-02Edited view to give a message if all the questions are correctly answeredHardik Ghaghada
2013-05-08Function to check C-C++ codeprathamesh
Added a function which compiles C and C++ code submitted by the student. 1) If compilation is successful, then the submitted code is tested using test-cases. 2) To test the function written by the student, a C++ file calls the function and passes the argument to the function. Then the function checks for the expected return value. 3) If the return value is as expected, then a different set of arguments are passed, and the output is checked. 4) If for all set of arguments the output is as expected then the student code is graded correct else the error is displayed to the student. Changed the way the code is graded. Previously, the algorithm checked the student code for all test-cases. If all the test-cases were satisfied, the last-line of the program was reached and printed "All Correct". So at any point if a test-case fails, the last line is not reached as the program was terminate. When the string "All Correct" was found in the output, the code was graded as RIGHT else WRONG. This is not a proper way for code checking, as the student code *may* contain a print statement with the string('All Correct'), and thus can get program RIGHT even though it is WRONG. So now the student code is tested as follows: 1) The code checks for all test-cases. 2) If all test-cases are satisfied then it returns 0. 3) If any one of the test-case fails, the program is terminated and will return 1. 4) Now depending on the return status(0 or 1), it will grade the code. a) if 0 then RIGHT b) if 1 then WRONG This ensures, no manipulation from student side.
2013-04-2480 Cols per line, corrected indentation in files & implemented DRYHardik Ghaghada
2013-03-18Added code snippets for questionsJay Parikh
2012-04-18changes for student interfacehardythe1
2012-04-14model changes as per requirnmenthardythe1
2012-04-02Question Paper generator changeshardythe1
2012-03-22Autocomplete tagging functionalityhardythe1
2012-03-21implemented tagging functionalityhardythe1
2012-03-21changes for adding tags in questionsjayparikh111
2011-12-09Moved all the apps to testapp folderparth