- Write a java module that takes in three parameters. The firstparameter is an array (defined as 12 cells large holding integers).The second parameter holds a single integer which will be used as a“target”. The third is the size of the array. This module will“search” the array for the target value. Assume that the arraycontains the target value. Have the module returnthe cell number of the target value.
- Write a driver for the module in problem 7.
Expert Answer
Answer to Write a java module that takes in three parameters. The first parameter is an array (defined as 12 cells large holding …