From 197da552083cb5031a4ea2cdb0057e4437e8f6ed Mon Sep 17 00:00:00 2001 From: Ilya Litvinov Date: Wed, 27 Nov 2024 22:02:03 +0300 Subject: [PATCH] Edited `CorrectAnswer` field value in R_Programming/Logic course "Which of the following evaluates to True" answer was set to "9 >= 10" in `CorrectAnswer` field. Edited to be "-6 > -7". --- R_Programming/Logic/lesson.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R_Programming/Logic/lesson.yaml b/R_Programming/Logic/lesson.yaml index 32432ec5..77a9ddd0 100644 --- a/R_Programming/Logic/lesson.yaml +++ b/R_Programming/Logic/lesson.yaml @@ -75,7 +75,7 @@ - Class: mult_question Output: 'Which of the following evaluates to TRUE?' - CorrectAnswer: 9 >= 10 + CorrectAnswer: -6 > -7 AnswerChoices: 9 >= 10; 7 == 9; 57 < 8; -6 > -7 AnswerTests: omnitest(correctVal='-6 > -7') Hint: 'If you need to, you can evaluate each expression in a separate R session to find the correct answer.'