One interesting application of computers is drawing graphs and bar charts (sometimes called "histograms"). Write a program that reads five numbers (each between 1 and 10). For each number read, your program should store the number in an integer array. Next, for every number in the array elements, print a line containing that number of adjacent asterisks. For example, if your program reads: 23584 , it should print: Write a program to ask the user for an integer value. The program then searches the element value of a 10 -integer array da ta to locate the element with the same value entered by the user. If the element is found, the program outputs the element index where the value is found in the array. If there is no such element value, tell the user that the value entered is not found. For example, if the array data contains {23,89,1,92,67,99,12,7,19,8}, then, the output is Otherwise Ten students were asked to rate the quality of the food in the student cafeteria on a scale of 1 to 3 (1 means poor, 2 means average, 3 means good). Write a program to read the responses of the 10 students into an array and summarize the frequency of the rating. An example is shown below.