Answered step by step
Verified Expert Solution
Question
1 Approved Answer
M CrsAss.pdf - suryachand789@x CrsAss C Get Homework Help With Cheg X * Course Hero x + + Co O File /Users/venkateshpuppala/Downloads/CrsAss.pdf a S CrsAss
M CrsAss.pdf - suryachand789@x CrsAss C Get Homework Help With Cheg X * Course Hero x + + Co O File /Users/venkateshpuppala/Downloads/CrsAss.pdf a S CrsAss 2/2 90% + 10 2. Write a program in a Java source file called Arraymethods.java. In this program write the following static methods: a method called selectColumn that takes a two dimensional array of integer and an integer parameter and returns a Java single dimenstional array of int. The returned array contains the column of the parameter array selected by the integer parameter. For example, given the parameters {{ 1, 2, 3}, [ 4, 5, 6}, (7, 8, 9)) and 2, the selectColumn method returns an array containing 2, 5, and 8 in that order. 1 1/2 2 Prof. Pitts CS585A: Practical Java Programming Spring 2021 a method called expand which takes a one dimensional array of integer and an integer parameter and returns a two dimensional array of integer. The returned array has the same number of rows as the parameter array has elements and the number of columns specified by the integer parameter. The row columns are filled by the values in the parameter array. For example give the array { 1, 2, 3 ) and the integer 5, expand returns the following two dimensional array: {{ 1, 1, 1, 1, 1 }, { 2, 2, 2, 2, 2 }, { 3, 3, 3, 3, 3} }, a method called padJagged that takes a two dimensional array of int and returns a new two dimensional array of integer. In the new array, shorter rows are padded to the size of the longest row with zeroes. For example, given the array: ( 1, 2 } { 1, 2, 3, 4, 5}, { 1, 2, 3} {1}, {1, 2, 3, 4}} padJagged returns [ { 1, 2, 0, 0, 0 }, { 1, 2, 3, 4, 5}, { 1, 2, 3. e, o }, { 1, 0, 0, 0, 0 }, { 1, 2, 3, 4, 0}} and for the array
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