Java: Create a new array list, add some elements and print out the collection
Write a Java program to create an array list, add some colors (strings) and print out the collection.
Pictorial Presentation:

Sample Solution:-
Java Code:
import java.util.*;
public class Exercise1 {
public static void main(String[] args) {
List<String> list_Strings = new ArrayList<String>();
list_Strings.add("Red");
list_Strings.add("Green");
list_Strings.add("Orange");
list_Strings.add("White");
list_Strings.add("Black");
System.out.println(list_Strings);
}
}
Sample Output:
Note: Exercise1.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. [Red, Green, Orange, White, Black]
Flowchart:

For more Practice: Solve these Related Problems:
- Write a Java program to create an ArrayList of colors, add duplicates, then remove them and print the unique collection.
- Write a Java program to create an ArrayList of colors and use a lambda expression to filter out colors containing a specific substring before printing.
- Write a Java program to create an ArrayList of colors, sort them in reverse alphabetical order, and print the resulting collection.
- Write a Java program to create an ArrayList of colors, convert all color names to title case using streams, and then print the list.
Java Code Editor:
Contribute your code and comments through Disqus.
Previous: Java Collection Exercises Home.
Next: Iterate through all elements in a array list.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics