Which line of pseudocode refers to an assignment statement t…
Which line of pseudocode refers to an assignment statement that collects a return value in a variable? 1 function check_answer(guess, correct) 2 if guess is correct then 3 output “Correct!” 4 return 1 5 else 6 output “That is not correct.” 7 return 0 8 output “Lake Chapala is the largest” 9 output “freshwater lake in which country? ” 10 input answer 11 points = call check_answer(answer, “Mexico”) 12 score = score + points