Arrays
A mathematical quiz context happened in a school and the scores are stored in an array named quizmark. The coordinating person wants to copy the quiz score into another array named copyquizmark. Which of these options will do that?
1copyquizmark[n] <- quizmark[n]
copyquizmark[n] <- quizmark[n]
We cannot copy the values from one array to another.
1copyquizmark <- quizmark
copyquizmark <- quizmark
1FOR index <- 0 to n copyquizmark[index] <- quizmark[index] END FOR
FOR index <- 0 to n copyquizmark[index] <- quizmark[index] END FOR