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 default exception handling in java?
Explain method overloading?
What are static initalizers in java ?
What are predicates in java 8?
Can we define package statement after import statement in java?
Explain the differences between static and dynamic variables?
Which of the classes will have more memory allocated?
What is memory leak and how does java handle it?
What is sortedmap in java?
How dead lock situation occurs in java and how you can identify it?
What is a thin-client application?
Explain jdk, jre and jvm?