Home
last modified time | relevance | path

Searched refs:answers (Results 1 – 25 of 34) sorted by relevance

12

/plugin/quizlib/ !
Dscript.js36 var answers = question.getElementsByTagName('input');
37 for (var i = 0; i < answers.length; i++) {
38 if (answers[i].type === "checkbox" || answers[i].type === "radio"){
40 if (quiz.answers[no].indexOf(answers[i].value) > -1) {
41 answers[i].parentNode.classList.add(quiz.Classes.CORRECT);
48 correctAnswer.innerHTML = quiz.answers[no];
50 answers[i].parentNode.insertBefore(correctAnswer, answers[i].nextSibling);
Dsyntax.php99 $answers = explode('|', $question);
101 foreach ($answers as $answer){
109 $answers = explode('|', $question);
111 foreach ($answers as $answer){
DREADME.md4 …rse quizzes written in well-defined HTML syntax and to evaluate the user answers. Furthermore the …
18 * checkbox (one or more correct answers)
21answers ("rightanswers") and the string for the submit button ("submit"). Each element of the righ…
23 …e question and an attribute "type" (text, radio, checkbox). The possible answers are a list separa…
41 … submit-button. Its first argument is the id of the quiz, the second is the array with the answers.
49 <div class="quizlib-question-answers">
56 <div class="quizlib-question-answers">
66 <div class="quizlib-question-answers">
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Forms/ !
DCorrectAnswers.php29 public function setAnswers($answers) argument
31 $this->answers = $answers;
38 return $this->answers;
DFileUploadAnswers.php29 public function setAnswers($answers) argument
31 $this->answers = $answers;
38 return $this->answers;
DTextAnswers.php29 public function setAnswers($answers) argument
31 $this->answers = $answers;
38 return $this->answers;
DFormResponse.php49 public function setAnswers($answers) argument
51 $this->answers = $answers;
58 return $this->answers;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dialogflow/ !
DGoogleCloudDialogflowV2beta1KnowledgeAnswers.php29 public function setAnswers($answers) argument
31 $this->answers = $answers;
38 return $this->answers;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/MyBusinessQA/ !
DListAnswersResponse.php37 public function setAnswers($answers) argument
39 $this->answers = $answers;
46 return $this->answers;
/plugin/flashcards/ !
Dscript.js62 question.answers.forEach((answer, index) => {
91 answers: question.answers, property
110 answers: question.answers, property
140 for (let j = 0; j < result.answers.length; j++) {
141 const answer = result.answers[j];
159 ? result.answers[result.selected]
Dsyntax.php74 $answers = [];
85 $answers[] = trim($line, "- ");
88 if (empty($answers) || $correctAnswerIndex === null) {
94 'answers' => $answers,
Dstyle.css19 #flashcards-container .answers {
23 #flashcards-container .answers button {
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ !
DMyBusinessQA.php136 'answers',
140 'path' => 'v1/{+name}/answers:delete',
150 'path' => 'v1/{+parent}/answers',
172 'path' => 'v1/{+parent}/answers:upsert',
/plugin/quizlib/scripts/ !
Dquizlib.js14 var Quiz = function(quizContainer, answers) { argument
75 this.answers = answers;
84 if (this.answers.length != this.questions.length) {
102 var answer = this.answers[i];
/plugin/contactmodern/ !
Drecaptchalib.php181 $answers = explode ("\n", $response [1]);
184 if (trim ($answers [0]) == 'true') {
189 $recaptcha_response->error = $answers [1];
/plugin/groupmail/ !
Drecaptchalib.php181 $answers = explode ("\n", $response [1]);
184 if (trim ($answers [0]) == 'true') {
189 $recaptcha_response->error = $answers [1];
/plugin/recaptcha/lib/ !
Drecaptchalib.php181 $answers = explode ("\n", $response [1]);
184 if (trim ($answers [0]) == 'true') {
189 $recaptcha_response->error = $answers [1];
/plugin/sequencediagram/bower_components/lodash/vendor/underscore/test/ !
Dcollections.js11 var answers = [];
12 _.each([1, 2, 3], function(num){ answers.push(num * this.multiplier); }, {multiplier: 5});
13 assert.deepEqual(answers, [5, 10, 15], 'context object property accessed');
15 answers = [];
16 _.each([1, 2, 3], function(num){ answers.push(num); });
17 assert.deepEqual(answers, [1, 2, 3], 'can iterate a simple array');
19 answers = [];
22 _.each(obj, function(value, key){ answers.push(key); });
23 …assert.deepEqual(answers, ['one', 'two', 'three'], 'iterating over objects works, and ignores the …
37 answers = 0;
[all …]
/plugin/quiz/ !
Dclass_quiz.php237 if ($this->checkanswer($question_num, &$answers)) {
260 $html .= '<div class="quiz-wrong">'. $answers[1].'</div>';
269 if (($answers[$n] == 1) && $a['choices'][$n]['correct']) {
271 } elseif (($answers[$n] == 1) && !$a['choices'][$n]['correct']) {
273 } elseif (($answers[$n] == 0) && $a['choices'][$n]['correct']) {
/plugin/questionnaire/db/ !
Dupdate0001.sql9 CREATE TABLE answers ( table
/plugin/survey/ !
Dplugin.info.txt6 desc Dokuwiki plugin to generate user surveys with multiple levels of questions and answers
/plugin/multipoll/ !
DINFO7 desc allows to create multi polls (multiple questions, multiple answers), from poll plugin
/plugin/ragasker/ !
H A DREADME.md3 …tes with OpenAI or compatible APIs to provide intelligent, context-aware answers based on your wik…
7 …tive widget to your wiki pages, allowing users to input questions and receive AI-generated answers.
/plugin/doodle4/ !
DREADME.md3 Unfortunatly there was no activity since years and he did not accept my pull request or answers my …
/plugin/questionnaire/ !
Dsyntax.php268 $answers = array_filter(array_map('trim', $input[$question]));
269 foreach ($answers as $answer) {

12