Obojobo

Obojobo

  • Authors
  • Developers
  • GitHub

› Authors Section Topics

Getting Started

  • Writing Your First Obojobo Document
  • OboXML Guide

Writing Assessments

  • Creating Your First Assessment
  • Assessment Scoring
  • Score Results Text

Assessments How To

  • Adding a Pre-Test
  • Displaying Remaining Attempts
  • Extra Credit & Penalties
  • Limiting Attempts
  • Locking Navigation
  • LTI Score Passback
  • New Questions for each Attempt
  • Post-Attempt Pages
  • Reviews & Question Feedback
  • Threshold Scoring
  • Triggers and Actions
  • Variables

Threshold Scoring

Assessment Rubric’s 'pass-fail' type can optionally be used to create a threshold type scoring system.

For example, an assessment can require a score of 75% or higher to pass. When the passingAttemptScore is reached, the student’s score will be adjusted to the passedResult value.

In this example, when the student scores below 75%, the score will be adjusted to 0. When the student’s score is 75% or higher, the score will be adjusted to 100%.

<!-- ... -->
    <Assessment id="my-assessment">
      <Page> <!-- ... --> </Page>
      <QuestionBank> <!-- ... --> </QuestionBank>

      <rubric
        type="pass-fail"
        passingAttemptScore="75"
        passedResult="100"
        failedResult="0"
      />

      <!-- ... -->
    </Assessment>
<!-- ... -->

This feature can be combined with Score Action Pages to display specialized messages to the student.

<!-- ... -->
    <Assessment id="my-assessment">
      <Page> <!-- ... --> </Page>
      <QuestionBank> <!-- ... --> </QuestionBank>
      <rubric
        type="pass-fail"
        passingAttemptScore="75"
        passedResult="100"
        failedResult="0"
      />

      <scoreActions>
        <scoreAction for="0">
          <Page> <!-- Failing page --> </Page>
        </scoreAction>
        <scoreAction for="100">
          <Page> <!-- Passing page --> </Page>
        </scoreAction>
      </scoreActions>

    </Assessment>
<!-- ... -->
Visit Obojobo on GitHub
Obojobo
Obojobo™ ©2021 University of Central Florida