//Examples of Short Answer Questions

$CATEGORY:  SAQuestions 

The mean of 1, 2, and 3 is {
=%100%Three
=%100%3
}

Compute the mean of 1, 2 and 3 {
=%100%mean(c(1,2,3))
=%75%sum(c(1,2,3))/3
=%75%sum(c(1,2,3))/length(c(1,2,3))
=%50%(1+2+3)/3
}

