Use Excel to generate 20 uniform random numbers between 0 and 10 using Excel.
1. Enter the following in the first cell (A1): =8*RAND()
Copy this to cells A2 thru A20.

Every time you change anything, Excel will generate a new set of random numbers. This will help you understand the nature of random numbers.

2. Use Excel functions to compute these statistics of the numbers in column A. Put these results in column B:
Minimum: =MIN(A:A)
Median:    =MEDIAN(A:A)
Mean:       =AVERAGE(A:A)
Maximum: =MAX(A:A)

We expect the following, but your values will be random:
Minimum between 0.0 and 1.0
Median and Mean near 4
Maximum between 7.0 and 8.0

3. Submit your Excel file