Scenario 3

Lifeguards are required to take a CPR certification course once a year. A SCO consists of instructional content on how to administer CPR and questions to assess the learners' knowledge. The learners are able to review the content at anytime to refresh their knowledge. Under a review mode, the SCO is built to only accept the learners' first attempt towards certification. The SCO is built to only allow the learners to review the material. This strategy would require that the mode be set to or initialized to review, prior to the SCO being launched.

Complete the code to set the SCO's mode to review.

var mode = GetValue ( "cmi.mode" );
if ( mode == " " )
{
   // Review mode, display content appropriately
}

Click after you complete this exercise.