What will be the result of the following code compilation and execution?

import java.util.*;
public class Test {
    public static void main(String[] args) {
        List buf = new ArrayList(2);

        System.out.print(buf.size());

        buf.add(10);

        System.out.print(buf.size());

        buf.add(20);
        buf.add(30);

        System.out.print(buf.size());
    }
}

Слідкуй за CodeGalaxy

Мобільний додаток Beta

Get it on Google Play
Зворотній Зв’язок
Продовжуйте вивчати
тести з Java
Cosmo
Зареєструйся Зараз
або Підпишись на майбутні тести