int NumArray[]="2 ,67 ,23 ,5 ,7 ,34 ,14 ,4 ,8 , 62";
A. display all the value of NumArray with an ODD index
B. display all the value in NumArray that are ODD
C. calculate and display the average of all EVEN values
D. create another array, call it ArrayNum, then store the value of NumArray in reverse order. display the value in ArrayNum.
E. display all the index of NumArray whose value is greater than 10.
F. count and display the number of ODD and EVEN numbers
G. find the MAX and MIN number then calculate and display the average [(MAX+MIN)/2]
H. sort and display NumArray in ascending order
I. calculate and display the square root of each value in NumArray then store it in an array called SquareNumArray.