You have been tasked with writing a program that computes the average score for gymnasts at the olympics. You are given a 2D array of values. Each row in the 2D array represents the scores received in a single run. Each column of the 2D array represents the scores given by a particular judge.
For example, if a gymnast had 3 different runs, and 5 judges scoring each run, their scores
2D array might look like this
Which of the following programs will compute the overall average score of the given scores
2D array?