logo

Crowdly

Ce afișează codul de mai jos? class Externa {     private int x = 10; ...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

  1. Ce afișează codul de mai jos?

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();

    }

}

More questions like this

Want instant access to all verified answers on moodle1.ceiti.md?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!