Applying Class Access Modifiers Flashcards

1
Q

Define a top level java class !

A

A top-level class is a class that is declared with the public access modifier and resides in its own .java file

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Which access modifiers can be applied to a top level java class ?

A

Classes at the top level (outside of other classes and interfaces ) not nested within other classes or interfaces can only have the public and the package-private default access modifiers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Define each one of them !

A

public class : means that the class can be accessed from inside and outside the package

package-private class : means that the class can only be accessed from inside the same package

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How many public classes/interfaces can we have in one java file ?

A

We can only have one public class in one java file.

We can only have one public interface in a java file.

We can not have a public class and a public interface in the same java file.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Which access modifiers can be applied to a top level interface ?

A

A top level interface (an interface that is not nested within other interfaces) can only have public or default access modifiers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly