✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що буде збережено в змінній list і виведено на екран в результаті виконання наступного фрагменту коду?ArrayList<String> list = new ArrayList<String>();list.add("last");list.add("first");list.remove("last"););System.out.println(list);