Write a main driver that:
oDisplays this array: int []num = {10, 20, 15, 40, 60};
oRequests the user to enter the start and end indices, and calculates and displays the average of the array starting and ending at the indices entered.Use a try/catch to check for invalid user input.
oRequests the user to enter a value, and searches the array to find a matching value. If there is a match, display Match; otherwise, display No Match.Display only one message at the end of the search.Write the code so the search stops when a match is encountered or there are no more values to check.