How can a class be accessed, If no access modifiers are
declared?

Answers were Sorted based on User's Feedback



How can a class be accessed, If no access modifiers are declared?..

Answer / banti

If a there is no access modifier specified to a class it
takes the access modifier as Default. This means the class
which has Default Access modifier can be accessed from
other classes defined in the same package.

Is This Answer Correct ?    2 Yes 0 No

How can a class be accessed, If no access modifiers are declared?..

Answer / ranganathkini

If a class is marked with no access modifiers then it is
given "package" access by default which means it can be
instantiated or subclasses by other classes in the same
package but it is inaccessible to classes outside the same
package.

Is This Answer Correct ?    0 Yes 0 No

How can a class be accessed, If no access modifiers are declared?..

Answer / ravikiran(aptech mumbai)

the default access will be resticted to the classes with in
the same package

Is This Answer Correct ?    0 Yes 0 No

How can a class be accessed, If no access modifiers are declared?..

Answer / babu

If a there is no access modifier specified to a class then it
takes the access modifier as Default modifier.Default Access modifier scope is package scope.so this class scope also package scope to access the classes which is having in the same package.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

What is numel matlab?

0 Answers  


What is the final keyword in java?

0 Answers  


What is int short for?

0 Answers  


What comes to mind when someone mentions a shallow copy in java?

0 Answers  


What is "this" keyword in java? Explain

0 Answers  






What are the names of interfaces that doesn't consists of method/s ?

3 Answers  


What is JIT ?

4 Answers   Satyam,


What is final class?

0 Answers  


Difference between this() and super() ?

0 Answers  


what is the difference between the "protected and default" modifiers?

8 Answers  


What is a double?

0 Answers  


Difference between the paint() and repaint() methods?

1 Answers  


Categories