Scenario 3

In this example, the learner is required to master the procedure of saving a Word document by observing the procedure in the "See It" SCO (SCO 1), practicing in the "Try It" SCO (SCO 2) and performing the procedure in the "Do It" SCO (SCO 3). If the learner scores a 10 in the "Do It" SCO (SCO 3), then SCO 3 is passed. If the learner scores anything less than 10, then SCO 3 is failed.

3 SCOs represented by 3 squares labeled: See It, Try It, and Do It respectively.  If learner's simulation score equals 10 then the SCO is passed, else it is failed.

Complete the code needed to set the appropriate success status:

// evaluate the learner’s score after you have retrieved and set it

if ( learnersScore == 10 )
{
  SetValue ( "cmi. ", " " );
}
else
{
  SetValue ( "cmi.success_status", " " );
}

Click after completing the code.