Question: If a player scores 3 points for a win, 1 point for a draw, and 0 points for a loss, how many points does a player have if they won 5 matches, drew 2, and lost 3?
Options:
Correct Answer: 17
Solution:
Points = (Wins * 3) + (Draws * 1) + (Losses * 0) = (5 * 3) + (2 * 1) + (3 * 0) = 15 + 2 + 0 = 17 points.