EdTech Monthly Tip

The New Quiz Experience

Brightspace has released a New Quiz Creation Experience, a similar appearance to what you find in the Assignment tool. Over the coming weeks, we’ll highlight a couple changes that you should be aware of.

Changes to Timing & Display View

By default, no time limit is set on new quizzes. Use Time Limit to set the amount of time students are given to complete the quiz once they have started it.

To set a time limit:

  • Click Set Time Limit to add a countdown clock to the quiz. If this box is left unchecked, no time limit will be set. Be aware that setting a time limit does not, on its own, enforce the time limit — it only shows a countdown clock for the student.

Timer Settings

Timer settings are made once “Set Time Limit” is checked. Click on Timer Settings to control how a quiz behave once students exceed the time limit.

Timer setting options include:

  • Automatically submit the quiz attempt
    • This is the default on all new quizzes if the “Set Time Limit” box is checked. Quiz auto-submission automatically hands in quizzes on enforced time limit quizzes at the end of the set time.
  • Flag as “exceeded time limit” and allow the learner to continue working
    • This option allows the student to continue working but adds an “exceeded time limit” notation to the quiz when submitted.
  • Do nothing: the time limit is not enforced
    • The countdown clock is made available to students, but no time limit is enforced.

Old and New Experience Comparison

Previously Available OptionNew Behaviour
Prevent the student from making further changesAutomatically submit the quiz attempt
Allow students to continue working but automatically score zeroAutomatically submit the quiz attempt  
Allow the student to continue workingFlag the attempt as exceeded time limit and allow the learner to continue working
A quiz that has a grace periodGrace period no longer available. Quiz now uses only the time limit set

Adding Time to a Quiz in Progress

Changes to the timer may result in the need to add time to a Brightspace quiz in progress. Adding time is done through the Special Access feature and requires students refresh their browsers for the new time setting to take effect.

To add time to a Quiz in progress:

  • Navigate to the Brightspace Manage Quizzes tab and click on the quiz name to edit.
  • Select Availability Dates & Conditions.
  • Click on the Manage Special Access link.
  • Ensure “Allow selected users special access to this quiz” is selected.
  • Click on Add Users to Special Access.
  • Scroll down to the Timing sections and check the box for “Override time limit.”
  • Enter the new time limit in the minutes field.
  • Scroll down to the Users section and check all the students’ names.
  • Click Save.
  • Click Save and Close.
  • Tell your students to refresh their browsers.

Watch Changes to the Brightspace Quiz Experience (video, 8:56) to learn more about the recent tool updates.

What’s New in Brightspace

Brightspace Updates 
Assignments:  

  • Instructors who teach several courses can save time by copying assignment folders to other courses.  From your assignment folder, use the context menu to copy your assignment to another course. 

Copy Assignment to Other Courses

  • Access new shortcuts to undo and redo PDF annotations on evaluations.  Previously, the only way to remove PDF annotations in Assignments was to use the eraser tool or delete the selection.  Now, an undo / redo button has been added for PDF annotations when evaluating in Assignments. 

Classlists: 

  • Pronouns can now be viewed from the Classlist and by hovering over a learner’s name or profile in the submission views within the assignment area.
  • If you have students in your course with Extended Time on Exams within their accommodation letter, you may now Edit Accommodations directly from your Classlist.  Using the context menu for the student with the Extended Time allotment, choose Edit Accommodations.  From there, you can adjust the timing to suit the accommodation letter.

 

Quizzes: 

  • “Disable Right Click” will be retired as of August 2022 within the quizzes area of Brightspace courses.  As the web has developed and browsers have become more secure, browsers have reduced the ability for web sites to control end-user behaviour.  Students are now able to install extensions such as “Allow Right Click” or use the browser developer console to skirt any restrictions, so “Disable Right Click” feature in Brightspace gives you a false sense of security.  
  • Save time and prevent data loss with the Restore Deleted Quizzes functionality.  This feature adds a new option in quizzes that allows instructors to restore deleted quizzes.  This option appears in the More Actions menu in the Quizzes tool.


 

Embedding Library Media

Due to issues with certain browsers and browser versions, some Brightspace users may encounter problems loading embedded library (EZProxy) media in your Brightspace course. Users should always check their browser’s cookie settings (see the “3rd-party cookies problem” item on the Help with Student Learning Tools FAQ) to ensure that they aren’t actively blocking the content, but this method doesn’t always work.
To make sure that everyone in your course can access library media items, please include the following when embedding library media in your course.

    1. A direct link to the video or audio that loads in a separate window or tab. When creating the Quicklink, please choose “New Window” from the Target options.
      Screencap of the left end of the format options bar in the HTML Editor, with the cursor pointing at the Quicklink button. 
      screencap of the Insert Quicklink options window
       
       
       
       
       
       
       
       
       
       
      If you are creating a link directly from Content, using Upload/Create > Create a Link, please make sure to choose the “Open as External Resource” option.
      screencap of the Upload/Create menu, with the Create a Link option selected
       
      Screencap of the options window for the Create Link option in Content

 
 
 
 
 
 
 
 
 
 
 
 
 
 

  1. It’s also a good idea to include basic Title/Author/Publication information for the media, if applicable; when using embed code, please include this before or after the video. This allows students to search for the content on their own, outside of Brightspace.

OER Publishing With Jekyll, Reveal.js, and GitLab

Learning management systems (LMS) have some great content authoring tools. Unfortunately, LMS have some limitations when it comes to OER publishing. Students typically lose access to the content once the course ends and LMS are not really designed for broad collaboration among content authors. One practical solution is to author OER content outside the LMS. The problem then becomes which tools to use and how to make that content available to others to collaborate on. I recently completed a project to do just this using a collection of open source software and services.

I wanted to create a collection of lecture notes, lab exercises, and presentation slide decks for a new course I was developing and make the content available online to students. For the lecture notes and lab exercises, I settled on using the Jekyll static site generator. A static site generator transforms simple content written in markdown into a beautiful website. Using markdown allows the author to focus solely on the content without getting hung up on the minutiae of HTML, CSS, and JavaScript. Many themes are available and most of the more popular ones produce a website that works well on desktop as well as mobile browsers.

For presentation slide decks, I used Reveal.js. Like Jekyll, slide decks can be authored either in markdown or very simple HTML. The major benefit of Reveal.js is that you can present directly from the browser. No special software or plugins are required. Presentations can contain many of the basic features that you might expect from PowerPoint or Keynote.

The final piece of the puzzle is making the content available and inviting collaboration. Both of these objectives can be met using the GitLab service. GitLab is an online service primarily designed to enable computer programmers to collaborate on the development of software projects. The service can be easily adapted to collaborative authoring of OER content. It is a simple matter of creating a public project and letting others know. For public projects, anyone can submit a “pull request” which the project owner can accept and incorporate into the project. For an OER project, this might be other instructors or even students. Like any other public project, if some members of the community are dissatisfied with the direction the project is taking, they are free to “fork” the project and continue developing the project independently. Finally, GitLab offers a service called “Pages” which allows the project to published in a format suitable for consumption by students and others.

jekyll logo reveal.js logo GitLab logo