public class ArrayPracticeInClass { //write a method that accepts an array of integers //and a single integer //the method should return true if the integer //is present in the array. //Otherwise, should return false //e.g. findNumber(arr, 33); public static boolean findNumber(int[] arr, int x) { for (int i=0; i