✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
ArrayList<String> al=new ArrayList<>();al.add("a");al.add("b");al.add("c");al.remove("b");System.out.println(al.get(1));Que se passe-t-il à l'exécution de ce code ?