[Solved]Statistic Set Values Sorted Ascending Descending Order Median Middle Value Set Contains Ev Q37123618
In statistic, when a set of values is sorted in ascending ordescending order, its median is the middle value. If the setcontains an even number of values, the median is the mean, oraverage, of the two middle values. Write a function that accepts asarguments the following: a) An array of integers. b) An integerthat indicates the number of elements in the array. The functionshould determine the median of the array. This value should bereturned as double. (Assume the values in the array are alreadysorted). Demonstrate your program prowess by using pointer notationinstead of array notation in this function.
Expert Answer
Answer to In statistic, when a set of values is sorted in ascending or descending order, its median is the middle value. If the se… . . .
OR

