According to the following program segment answer the following questions. ArrayList animals = new ArrayList() ; animals.add ("CAT"); animals.add ("FISH"); animals.add ("DOG"); animals.add ("ELEPHANT"); animals.add("MOUSE"); animals.add("HORSE"); Il#####C for (int i=0; i

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter10: Pointers
Section10.2: Array Names As Pointers
Problem 4E: (Program) Write a declaration to store the following values in an array named rates: 12.9, 18.6,...
icon
Related questions
Question
Q1 C) Just answer the iv question iii) Explain the purpose of the following statement in the program: if (animals.get (j) .compareTo (animals.get (j+1))
c)
According to the following program segment answer the following questions.
ArrayList <String> animals = new ArrayList<String>();
animals.add("CAT");
animals.add("FISH");
animals.add("DOG");
animals.add ("ELEPHANT");
animals.add ("MOUSE");
animals.add("HORSE");
Il#####C
for (int i=0; i<animals.size(); i++) {
for (int j=0; j<animals.size()-1; j++) {
if(animals.get(j).compareTo (animals.get (j+1)) <0) //***
{
String value = animals.get(j);
animals.set (j, animals.get(j+1));
animals.set ( (j+1), value);
}
}
}
for (int i =0;i<animals.size ();i++)
System.out.println(animals.get(i));
Transcribed Image Text:c) According to the following program segment answer the following questions. ArrayList <String> animals = new ArrayList<String>(); animals.add("CAT"); animals.add("FISH"); animals.add("DOG"); animals.add ("ELEPHANT"); animals.add ("MOUSE"); animals.add("HORSE"); Il#####C for (int i=0; i<animals.size(); i++) { for (int j=0; j<animals.size()-1; j++) { if(animals.get(j).compareTo (animals.get (j+1)) <0) //*** { String value = animals.get(j); animals.set (j, animals.get(j+1)); animals.set ( (j+1), value); } } } for (int i =0;i<animals.size ();i++) System.out.println(animals.get(i));
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Array
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
Programming with Microsoft Visual Basic 2017
Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:
9781337102124
Author:
Diane Zak
Publisher:
Cengage Learning
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage