✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
class Externa {
private int x = 10;
class Interna {
void afiseaza() {
System.out.println(x);
}
}
public void executa() {
Interna i = new Interna();
i.afiseaza();
}
}
public class Main {
public static void main(String[] args) {
new Externa().executa();
}
}
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!