Write pseudo code for finding the mean of a set of numbers.

mean( list_of_numbers ) length <– length of list_of_numbers index <– 1 sum <– 0 while index <= length { sum <– sum + list_of_numbers[index] index <– index + 1 } return sum / length example input : mean ( 1 2 3 4 ) length <– 4 index <– 1 sum <– 0 list_of_numbers[1] = …