What is the following code execution result?

String data[];
data = {"one", "two", "three"};
System.out.println(data[1]);
Explanation
Initialization list is only allowed for usage during either array declaration:
String data[] = {"one", "two", "three"};
or array creation with the use of the new operator:
data = new String[] {"one", "two", "three"};

Следи за CodeGalaxy

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

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