program language system

Hashim-love1
ProgramLanguageSystemsAssignment01.docx

Program Language Systems Assignment 01

Write a program with the requirements specified below in Python and one other programming language of your choice.

Requirements:

[20 pts] Create an array of 80 random numbers between 1 and 85.

[10 pts] Print out the numbers in the array in eight lines of 10 numbers, the numbers must be evenly spaced.

[5 pts] Sort the numbers in ascending order.

Print out the sorted numbers (8 by 10)

[5 pts] Find and print the smallest number in the array.

[5 pts] Find and print the largest number in the array.

[10 pts] Determine and print the sum of the numbers.

[15 pts] Determine and print the product of the numbers (ask if you are not sure).

[30 pts] Calculate the mean (to 3 decimal places), median and Mode of the numbers, print out these values. Note, there may be more than one mode, which can cause Python to error!

[20 pts] Calculate the Standard Deviation of the numbers, to 3 decimal places, print out value.

The output of your program should look like the following:

You will lose points if the output is not as shown above.