5. A method named duplicateRow that takes a 1-dimensional array of double values and an integer. It returns a 2-dimensional array that is formed by duplicating the passed 1- dimensional array as rows as many times as defined in the passed integer. For example, if the array {1.1, 2.2, 3.3, 4.4, 5.5} and the integer 3 are passed to this method, it must return the 2-dimensional array: 1.1 2.2 3.3 4.4 5.5 1.1 2.2 3.3 4.4 5.5 1.1 2.2 3.3 4.45.5
5. A method named duplicateRow that takes a 1-dimensional array of double values and an integer. It returns a 2-dimensional array that is formed by duplicating the passed 1- dimensional array as rows as many times as defined in the passed integer. For example, if the array {1.1, 2.2, 3.3, 4.4, 5.5} and the integer 3 are passed to this method, it must return the 2-dimensional array: 1.1 2.2 3.3 4.4 5.5 1.1 2.2 3.3 4.4 5.5 1.1 2.2 3.3 4.45.5
Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
Related questions
Question
![5. A method named duplicateRow that takes a 1-dimensional array of double values and an
integer. It returns a 2-dimensional array that is formed by duplicating the passed 1-
dimensional array as rows as many times as defined in the passed integer.
For example, if the array {1.1, 2.2, 3.3, 4.4, 5.5} and the integer 3 are passed to this
method, it must return the 2-dimensional array:
1.1 2.2 3.3 4.4 5.5
1.1 2.2 3.3 4.4 5.5
1.1 2.2 3.3 4.4 5.5
6. A method named concatenate that takes two 2-dimensional arrays of double values and
returns a new 2-dimensional array that results from concatenating the two arrays by
combining their rows.
For example, if the first
1.1 3.3 5.5 7.7
array
is:
1.1 2.2
7.7 8.8 2.2
and the second array:
9.9 7.7 4.4
8.8 6.6
It must return the following array:
1.1 3.3 5.57.7
1.1 2.2
7.7 8.8 2.2
9.9 7.7 4.4
8.8 6.6](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2Ff9f6da89-4153-4ec9-8cad-e8580bd5946a%2F9fae4acb-b882-4ae5-a85e-dd0915847877%2Fk762psm_processed.png&w=3840&q=75)
Transcribed Image Text:5. A method named duplicateRow that takes a 1-dimensional array of double values and an
integer. It returns a 2-dimensional array that is formed by duplicating the passed 1-
dimensional array as rows as many times as defined in the passed integer.
For example, if the array {1.1, 2.2, 3.3, 4.4, 5.5} and the integer 3 are passed to this
method, it must return the 2-dimensional array:
1.1 2.2 3.3 4.4 5.5
1.1 2.2 3.3 4.4 5.5
1.1 2.2 3.3 4.4 5.5
6. A method named concatenate that takes two 2-dimensional arrays of double values and
returns a new 2-dimensional array that results from concatenating the two arrays by
combining their rows.
For example, if the first
1.1 3.3 5.5 7.7
array
is:
1.1 2.2
7.7 8.8 2.2
and the second array:
9.9 7.7 4.4
8.8 6.6
It must return the following array:
1.1 3.3 5.57.7
1.1 2.2
7.7 8.8 2.2
9.9 7.7 4.4
8.8 6.6
![0.0
7. A method named addRow that takes two parameters: the first is a two-dimensional array
of doubles, and the second is a one-dimensional array of doubles. The method must
return a new two-dimensional array of doubles that results from adding the second
parameter (one-dimensional array) as a last row to the first parameter (two-dimensional
array).
The following implementation forms the new array by making it point to the same rows
of the 2-dimensional array and the 1-dimensional array:
public static double[][] addRow(double [][]array, double[]row){
double[][] newArray = new double[array.length+1][]);
for(int i=0; i<array.length; i++)
newArray[i]=arrsay[i];
newArray[newArray.length-1]=row;
return newArray;
}
In this assignment, you must implement this method in another way. Your
implementation must not work by copying references. Instead, it must create new array
for each row and copy the individual elements.](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2Ff9f6da89-4153-4ec9-8cad-e8580bd5946a%2F9fae4acb-b882-4ae5-a85e-dd0915847877%2F22qyizi_processed.png&w=3840&q=75)
Transcribed Image Text:0.0
7. A method named addRow that takes two parameters: the first is a two-dimensional array
of doubles, and the second is a one-dimensional array of doubles. The method must
return a new two-dimensional array of doubles that results from adding the second
parameter (one-dimensional array) as a last row to the first parameter (two-dimensional
array).
The following implementation forms the new array by making it point to the same rows
of the 2-dimensional array and the 1-dimensional array:
public static double[][] addRow(double [][]array, double[]row){
double[][] newArray = new double[array.length+1][]);
for(int i=0; i<array.length; i++)
newArray[i]=arrsay[i];
newArray[newArray.length-1]=row;
return newArray;
}
In this assignment, you must implement this method in another way. Your
implementation must not work by copying references. Instead, it must create new array
for each row and copy the individual elements.
Expert Solution
![](/static/compass_v2/shared-icons/check-mark.png)
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution!
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
Recommended textbooks for you
![Computer Networking: A Top-Down Approach (7th Edi…](https://www.bartleby.com/isbn_cover_images/9780133594140/9780133594140_smallCoverImage.gif)
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
![Computer Organization and Design MIPS Edition, Fi…](https://www.bartleby.com/isbn_cover_images/9780124077263/9780124077263_smallCoverImage.gif)
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
![Network+ Guide to Networks (MindTap Course List)](https://www.bartleby.com/isbn_cover_images/9781337569330/9781337569330_smallCoverImage.gif)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
![Computer Networking: A Top-Down Approach (7th Edi…](https://www.bartleby.com/isbn_cover_images/9780133594140/9780133594140_smallCoverImage.gif)
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
![Computer Organization and Design MIPS Edition, Fi…](https://www.bartleby.com/isbn_cover_images/9780124077263/9780124077263_smallCoverImage.gif)
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
![Network+ Guide to Networks (MindTap Course List)](https://www.bartleby.com/isbn_cover_images/9781337569330/9781337569330_smallCoverImage.gif)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
![Concepts of Database Management](https://www.bartleby.com/isbn_cover_images/9781337093422/9781337093422_smallCoverImage.gif)
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
![Prelude to Programming](https://www.bartleby.com/isbn_cover_images/9780133750423/9780133750423_smallCoverImage.jpg)
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
![Sc Business Data Communications and Networking, T…](https://www.bartleby.com/isbn_cover_images/9781119368830/9781119368830_smallCoverImage.gif)
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY