What changes will lead to a successful compilation of the following code? Select all that apply.

public class LocalVsInstance {    
    String s;
    
    public static void main(String[] args) {
        String s;
        System.out.println(s.toUpperCase());
        LocalVsInstance localVsInstance = new  LocalVsInstance();
        System.out.println(localVsInstance.s.toUpperCase());
    }

}

Следи за CodeGalaxy

Мобильное приложение Beta

Get it on Google Play
Обратная Связь
Продолжайте изучать
тесты по Java
Cosmo
Зарегистрируйся сейчас
или Подпишись на будущие тесты