✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
¿Qué ocurrirá en este código?
class Prueba { private int x; Prueba(int x) { this.x = x; } void mostrar() { System.out.println(x); }}public class Main { public static void main(String[] args) { Prueba p = new Prueba(5); p.mostrar(); }}