✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Mi a kimenete a következő programnak?
public class JavaApplication{ public static void main(String[] args) { int x[] = new int[ 10 ]; System.out.print( x.length +", "); x.length = 20; System.out.println( x.length ); }}