33.6k views
1 vote
The following program should create a List called conversation, add in some elements("hello", "goodbye", "how are you", and "see you later"), and print out the elements with ", " after each. Fill in the code so that it adds the elements to conversation. The rest of the program is finished for you.

import java.util.List;
import java.util.ArrayList;

public class ListTest {

public static void main(String[] args) {

List conversation;
conversation = new ArrayList ();

// YOUR CODE HERE //

for (String element: conversation) {

System.out.print(element + ", ");

}
}
}

User Bengie
by
7.7k points

1 Answer

2 votes

Answer:

import java.util.List;

import java.util.ArrayList;

public class ListTest {

public static void main(String[] args) {

List<String> conversation;

conversation = new ArrayList<String>();

conversation.add("hello");

conversation.add("goodbye");

conversation.add("how are you");

conversation.add("see you later");

for (String element: conversation) {

System.out.print(element + ", ");

}

}

}

Step-by-step explanation:

I used the add method in the code above to add the necessary components to the discussion list. By designating the List as ListString>, I also indicated that the elements to be added to the list are of type String. I printed each element of the list after a ", " at the end after looping through it.

User Mohammad Azim
by
8.3k points