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 do you know about the garbate collector?
How to convert String into primitive datatype.
Can we define a package statement after the import statement in java?
How to declare an arraylist in java?
What is a data structure java?
Explain Event handling in AWT?
What is meant by Java ?
what is difference between perfom() & excute() ?
In C we use only compiler. Why java uses both compiler and interpreter? What is its significance?
Can interface be private in java?
What is var keyword ?
What do you understand by the term wrapper classes?