✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що буде виведено у результаті виконання програми?
public class ArrayTest
{
public static void main(String[ ] args)
{
float f1[ ], f2[ ];
f1 = new float[10];
f2 = f1;
System.out.println("f2[0] = " + f2[0]);
}
}