Answered step by step
Verified Expert Solution
Question
1 Approved Answer
What is the finished code in java? Provided code- public class LabArraysClass { public static void main(String[] args) { int[] iArray1 = {6, 12, 3,
What is the finished code in java?
Provided code-
public class LabArraysClass { public static void main(String[] args) { int[] iArray1 = {6, 12, 3, 9}; int[] iArray2 = new int[5]; // fill iArray2 with 7 // print iArray1 and iArray2 (toString) // search for number 9 in iArray1 and print the value returned: // sort iArray1 and print it // search for number 9 in iArray1 and print the value returned: // create iArray3 and assign it the first 3 elements of iArray1; print it // test equality of new int[] {3, 6, 9} and iArray3; print result } }Lab Arrays Class Instructions Download LabArraysClass.java .Add an import statement that imports the package java.util.Arrays . Use the Arrays class members from the handout to complete the instructions. .Produce a labeled output as described below You searched for number 9 twice and you received different results. Why? Hint: check out the description of the method binarySearch in the Java documentation docs.oracle.com/iavase Find out the reason and print it in the last line Expected output: iArray1: [6, 12, 3, 9] iArray2: [7, 7, 7, 7, 7] 9 in iArray1: -2 iArrayl sorted: [3, 6, 9, 12] 9 in iArray1: 2 iArray3: [3, 6, 9] iArray3 equals [3, 6, 9]: true Reason: .. - Lab Arrays Class Instructions: Download LabArraysClass.java Use the Arrays class members from the handout to complete the instructions. You searched for number 9 twice and you received different results. Why? Add an import statement that imports the package java.util.Arrays Produce a labeled output as described belovw Hint: check out the description of the method binarySearch in the Java documentation docs.oracle.com/iavase Find out the reason and print it in the last line Expected output: Arrayl: [6, 12, 3, 9] Array2: [7, 7, 7, 7, 71 9 in iArray1: -2 Array1 sorted: [3, 6, 9, 12] 9 in iArray1: 2 iArray3: [3, 6, 9] iArray3 equals [3, 6, 9]: true Reason
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started