✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
class Test {
static class Statica {
void mesaj() {
System.out.println("Salut din clasa statică");
}
}
}
public class Main {
public static void main(String[] args) {
Test.Statica s = new Test.Statica();
s.mesaj();
}
}
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!