simple score

counting the number of correct answers and trials
Next applet shows a simple score that counts two variable numbers;[br][list][*]How many times an answer is given? (= number [b]trials[/b])[/*][*]How many times a correct answer is given? (= number [b]solutions[/b])[/*][/list]The counting is done in the script of the Input Box
[list][*][b]trials[/b]: Each time an answer is given, the value is increased by 1.[/*][*][b]solutions[/b]: If ans equals sol the value is increased by 1, if not it remains the same.[br][u]note[/u]: Use double Equal Signs since it's a test and not an attribution[/*][/list]The button [b]Start again[/b] resets all counting and makes the Input Box empty again with the commands:[br][b]SetValue[ans,0][br]SetValue[empty,""][br]SetValue[trials,0][br]SetValue[solutions,0][/b]

Information: simple score