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 struts in java?

0 Answers  


What is the relationship between clipping and repainting under awt?

0 Answers  


JVM is platform independent or depeneded?

7 Answers  


What is the right data type to represent a price in java?

0 Answers  


What is formatted output?

0 Answers  


Can finally block be used without a catch?

0 Answers  


What are the 6 functions?

0 Answers  


Define an abstract class with reference to java.

0 Answers  


What is an exception in java?

0 Answers  


What is an example of a constant variable?

0 Answers  


Difference between Application and Applet ?

4 Answers   Wipro,


Difference between arraylist and hashset in java?

0 Answers  


Categories