AP Computer Science A Problem 1: Array Practice! Array Linear Search in Java A review worksheet for free response linear array search questions on the AP Computer Science exam. Allows students write a search method using a for loop. Includes fully coded answer key! Example: Search an integer array of arbitrary length for a specific value n, and return the index at which this value n appears. If n is not in the array, return the value -1.int[] arr = {3, 9, 30, 6, 8, 2, 4, 10}; int index = simpleS