How can a class be accessed, If no access modifiers are
declared?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
What is struts in java?
What is the relationship between clipping and repainting under awt?
JVM is platform independent or depeneded?
What is the right data type to represent a price in java?
What is formatted output?
Can finally block be used without a catch?
What are the 6 functions?
Define an abstract class with reference to java.
What is an exception in java?
What is an example of a constant variable?
Difference between Application and Applet ?
Difference between arraylist and hashset in java?