• Create a 10 x 8 two dimensional array consisting of random integers in the range 50 to 99, including
the end points.
• Print the array, 8 numbers per line, with a space between each
• Find and print, appropriately labeled, the smallest number, with its index, in the array
• Calculate and print, appropriately labeled, the average of the value in the array; note that the result
should be a real number
• Find and print, appropriately labeled, the number that occurs most often in the array (mode); if there
is no mode, print “No mode”
• Modify the array such that all even numbers are replaced by the number 111
• Print the modified array again, 8 numbers per line, with a space between each