Web Content Item

What's This?

A Web Content item, despite it's name, has nothing to do with accessing anything from the World Wide Web (WWW). Instead, it is any item that is not scored. This can include introduction pages (e.g., pages that explain the purpose of the test the student is about to take, or explain who the test is for), instruction pages (e.g., pages that explain how to use the TN8 system properly, how answers are to be formatted, or how the test is timed). Although the page can have interactions (including the elements for responseProcessing, and so on), such interactions are not scored as a part of the final results of the test being taken. In this way, sample items can be included within the test, be properly handled, and not impact the student's performance at the end of the test.

Web Content is something that is specified at the assessmentTestassessmentItemRef level; e.g.:

<assessmentItemRef ... webcontent="true" webcontenttitle="Declaration of Independence" />

This is an indicator to the TN8 client's Test Overview page that the overview should not present answered-ness to the student, but should instead display the webContentTitle - or "Instructions" if no webContentTitle is specified. The example below is a screen instructing the student to stop and wait for further instruction from the proctor.

Get Responses: [ Click Get Responses ]
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<assessmentItem xmlns="http://www.imsglobal.org/xsd/apip/apipv1p0/qtiitem/imsqti_v2p1" xmlns:m="http://www.w3.org/1998/Math/MathML" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.imsglobal.org/xsd/apip/apipv1p0/qtiitem/imsqti_v2p1 http://www.imsglobal.org/profile/apip/apipv1p0/apipv1p0_qtiitemv2p1_v1p0.xsd"
  adaptive="false" timeDependent="false" identifier="WebContentStop" title="WebContentStop">
  <responseDeclaration baseType="string" cardinality="single" identifier="RESPONSE"/>
  <outcomeDeclaration baseType="float" cardinality="single" identifier="SCORE"/>
  <itemBody>
    <div class="row">
      <div class="span12">
        <div class="well">
          <div class="center">
            <h1 id="stop">STOP!</h1>
            <p></p>
            <h2 id="wait">Wait for instructions from the Test Administrator.</h2>
          </div>
        </div>
      </div>
    </div>
  </itemBody>
  <responseProcessing template="http://www.imsglobal.org/question/qti_v2p1/rptemplates/match_correct.xml"/>
</assessmentItem>

STOP!

Wait for instructions from the Test Administrator.