Collections

  • 13
  • Ikke tilgængelig
Collections

13
Undersøgelse/quiz
, niveau , lektion
Ikke tilgængelig
Collections
Collections
Kommentarer (3)
  • Populær
  • Ny
  • Gammel
Du skal være logget ind for at skrive en kommentar
Jimmy
Niveau,,NiNi
29 May, 07:31
8. What method should be used to remove an element from the middle of an ArrayList? ArrayList<String> list = new ArrayList<>(); list.add("Apple"); list.add("Banana"); list.add("Cherry"); list.add("Date"); // Remove the element at index 2 ("Cherry") list.remove(2); // Resulting list: ["Apple", "Banana", "Date"] System.out.println(list);
Harshit Garg
Niveau,,NiNi
Expert
3 November 2023, 18:24
What method should be used to remove an element from the middle of an ArrayList?
Kingpvz
Niveau,,Ni
30 November 2024, 08:58
neither of the answers they provided is correct