How do I set up a fill in the blank quiz answer in a "New Quizzes" that both ignores case sensitivity and recognizes a "keyword" answer? So far, it looks like you can do one but not both, which is very frustrating.
You can use regular expressions if you want more flexibility.
For example, (?i)\byes\b matches "yes", "Yes", "YES!!!", but not "no" or "yesterday".
The "(?i)" makes the matching case insensitive (so it accepts the other cases). The two "\b"s reflect the word boundaries (so it doesn't match with "yesterday").
editing to add that it also matches correctly with "yes, sir" and "of course the answer is yes", so it also satisfies the "keyword" requirement as I understand it.
Hi @JerryCoe,
Did @Gabriel33's response help you out?
-Doug
Hello, I have a number of assignments that require students to complete peer reviews. Because my course is self-paced and students are progressing at different rates, I created completed sample submissions using the Test Student account so that students would always have a submission available to review. However, when I go…
Hi, I can't get this working right. I've created outcomes where the calculation method is to meet mastery twice. I've aligned them to several assignments. The grade book displays mastery as met when it's only been achieved on one of the assignments. It's not showing positive or negative for the other assignments. (I've…
Yesterday, after much trial and error…I concluded the new quizzes matching choice options do not work as I expected, and have used with other LMS. I thought that I could provide students a matching choice quiz with multiple attempts that would report incorrectly answered matches on the first attempt, and display the…
I have seen documentation that says you must recopy your iCal link and resubscribe when you are enrolled in new classes, does this mean my iCal feed link changes each time, or do i just need to re-fetch the .ics file?
We use course pacing to manage due dates, because we run ~20 something courses each quarter and manually setting due dates would be a nightmare. Several courses have two core topics. We want to allow students to choose which of these they will pursue first. Is there any way to configure multiple course paces with different…