Replace ArrayList with array

Java Collection, ArrayList Exercises: Replace the second element of a ArrayList with the specified element

Last update on December 14 2021 06:27:46 (UTC/GMT +8 hours)

Java Collection, ArrayList Exercises: Exercise-21 with Solution

Write a Java program to replace the second element of a ArrayList with the specified element.

Pictorial Presentation:

Replace ArrayList with array

Sample Solution:-

Java Code:

import java.util.ArrayList; public class Exercise21 { public static void main(String[] args){ ArrayList color = new ArrayList(); color.add("Red"); color.add("Green"); System.out.println("Original array list: " + color); String new_color = "White"; color.set(1,new_color); int num=color.size(); System.out.println("Replace second element with 'White'."); for(int i=0;iSample Output:

Original array list: [Red, Green] Replace second element with 'White'. Red White

Flowchart:

Replace ArrayList with array

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Increase the size of an array list.
Next: Print all the elements of a ArrayList using the position of the elements.

What is the difficulty level of this exercise?

Easy Medium Hard

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

Use Equals over ==

== compares object references, it checks to see if the two operands point to the same object (not equivalent objects, the same object).On the other hand, "equals" perform actual comparison of two strings.

Ref: https://bit.ly/313pxBG


  • New Content published on w3resource:
  • Scala Programming Exercises, Practice, Solution
  • Python Itertools exercises
  • Python Numpy exercises
  • Python GeoPy Package exercises
  • Python Pandas exercises
  • Python nltk exercises
  • Python BeautifulSoup exercises
  • Form Template
  • Composer - PHP Package Manager
  • PHPUnit - PHP Testing
  • Laravel - PHP Framework
  • Angular - JavaScript Framework
  • Vue - JavaScript Framework
  • Jest - JavaScript Testing Framework