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