I dont know how to find the mode of an array.
I am to do the following.
(1) Given the following:
· A list of 11 integers; 1,2,3,3,3,2,2,1 ,3,4,5
(2) The program should:
· Creates an array from the source data list
· Determines the “mode” of the array (mode is a proper statistical term that is the value that occurs “most often”)
· The program should account for the “exception” that no “mode” occurs – no value in the array occurs more than once.
Any help is appreciated. Thanks
I am to do the following.
(1) Given the following:
· A list of 11 integers; 1,2,3,3,3,2,2,1 ,3,4,5
(2) The program should:
· Creates an array from the source data list
· Determines the “mode” of the array (mode is a proper statistical term that is the value that occurs “most often”)
· The program should account for the “exception” that no “mode” occurs – no value in the array occurs more than once.
Any help is appreciated. Thanks
Comment