Answered step by step
Verified Expert Solution
Question
1 Approved Answer
undefined 2.2.1 Method to Implement: get Multiples0f3 Problem. You are asked to implement a utility method which takes as input an array of integers and
undefined
2.2.1 Method to Implement: get Multiples0f3 Problem. You are asked to implement a utility method which takes as input an array of integers and returns another array containing all those elements that are multiples of 3. For example, if the input array is: Then the output or returned array is: Note that the length of the output array corresponds the number of elements in the input array that are multiples of 3, meaning that if the input array is empty, or if there are no multiples of 3 in the input array, then the output array should be empty. Also, the output array should prescrve the order in which these multiples, if any, appear in the input array. For example, in the above example, multiples of 3 in the input array appear in the order of 6 followed by 3, which is reflected in the output array. Testing. Your goal is to first pass all tests related to this method in the JUnit test class TestUtilities. You arc cncouraged to write additional JUnit tests. Thesc tests document the cxpected values on various cases: study them while developing your code. However, use the console application class GetMultiples0f3App if you wish (e.g., use the input and expected values from the JUnit tests). Here is an example run: How many numbers do you want to input? 10 Enter input 1: 89 Enter input 2: 23 Enter input 3: 42 Enter input 4: 87 Enter input 5: 18 Enter input 6: 36 Enter input 7: 23 Enter input 8: 97 Enter input 9: 102 Enter input 10: 987 Todo. Implement the Utilities.getMultiplesof3 method. See the comments there for the input parameters and requirements 7Step 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