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 the name of the java compiler?
why an outer class cannot be declared as private?
Can we use catch statement for checked exceptions when there is no chance of raising exception in our code?
What is the difference between the synchronized() & static synchronized()?
Wha is the output from system.out.println(“hello”+null); ?
How many ways can an argument be passed to a subroutine?
3 Answers Technological University of the Philippines,
Is java a pure object oriented language?
What are the elements of java?
Explain the selection sort algorithm and state its time complexity?
What is static and a non-static inner class?
What is a numeric format?
watz the difference between abstract class and interface? Which one u ill choose as a designer?