- Knowledge Base
- Writing Your Own Scoring Rules for Your Assessments: An Example
- Linking Each Interaction to its Own Variable and Setting the Values
-
TAO Portal Quickstart Guide
-
Rostering in TAO Portal
-
Creating assessment materials in TAO
-
Creating assessments for delivery in TAO
-
Proctoring in TAO Portal
-
Viewing results in TAO Portal
-
How Does Scoring Work in TAO?
-
Writing Your Own Scoring Rules for Your Assessments: An Example
-
TAO Portal Terminology
-
TAO Quickstart Guide
-
Making the Most of the Asset Manager
-
Working With Metadata in TAO
-
Configuring Interactions: What Possibilities do You Have?
-
Randomization in Items and Tests
-
All You Need to Know About Test-Takers
-
All About Deliveries
-
Setting up LTI
-
Proctoring Assessments in TAO
-
Interpreting Results Tables in TAO
-
Using the Advanced Search
-
Best Practices for Working with Multiple Users in a Small-scale Authoring Scenario Part 1: Set-up
-
Best Practices for Working with Multiple Users in a Small-scale Authoring Scenario Part 2: Workflow
-
Optimizing Pictures
-
All About Extensions
-
Stylesheets in Assessment Items
-
TAO for RTL Languages
-
TAO Terminology Explained Part 1: TAO Architecture
-
TAO Terminology Explained Part 2: Creating and Delivering Assessments
-
TAO Terminology Explained Part 3: Scoring Assessments
-
Test-taker and Accessibility tools
-
How does scoring work in TAO? (II)
-
Video demos
-
Video tutorials: Creating interactions
-
Thinking About Test Questions (and Choosing Interactions) According to Task Type
Calculating the score for the whole item
There are two more values which need to be calculated so that Ian can see how his test-takers do over the whole item. These are the values SCORE and MAXSCORE. The value of SCORE will show the total score the test-taker obtained for the whole item, whilst the value of MAXSCORE will show the possible score the test-taker could have obtained for the whole item.
He needs to add two more blocks to his response processing rule in order for SCORE and MAXSCORE to contain the proper values.
For SCORE, he just adds the values of all previously computed outcome variables together.
<setOutcomeValue identifier="SCORE">
<sum>
<variable identifier="SCORE_1" />
<variable identifier="SCORE_2" />
<variable identifier="SCORE_3" />
</sum>
</setOutcomeValue>
For MAXSCORE, he needs to set the required value directly, based on sum of the highest scores of all the interactions contained within the item.
<setOutcomeValue identifier="MAXSCORE">
<baseValue baseType="integer">9</baseValue>
</setOutcomeValue>