public function ClozeQuestion::getMaximumScore in Cloze 6
Same name and namespace in other branches
- 7 cloze.classes.inc \ClozeQuestion::getMaximumScore()
Implementation of getMaximumScore
See also
QuizQuestion#getMaximumScore()
1 call to ClozeQuestion::getMaximumScore()
- ClozeQuestion::evaluateAnswer in ./
cloze.classes.inc - Evaluate the correctness of an answer based on the correct answer and evaluation method.
File
- ./
cloze.classes.inc, line 193 - The main classes for the short answer question type.
Class
- ClozeQuestion
- Extension of QuizQuestion.
Code
public function getMaximumScore() {
return 10;
}