Students, please be sure to log in. This site does not use cookies and does not track/store work submitted when not signed in.
Unit 6 Problems
Java Reference Sheet
combineA
Objective(s): Practice declaring and instantiating arrays with the use of the length property.
Given two int
arrays, arrA
, and ArrB
, create a new array that is the same size as the two arrays combined.
For this problem, you are strictly thinking about the size of the new array and how to create the container. You do not need to populate the new array.