What is the difference between a public and a non-public
class?
Answers were Sorted based on User's Feedback
Answer / ravikiran(aptech mumbai)
public class is the one whose memebers can get an access to
all the classes in the same package and out of the package
| Is This Answer Correct ? | 14 Yes | 0 No |
Answer / javachi
public class is a class that can be accessed from anywhere in the package and outside the package, this public means access globaly.
there is no such non-public class in java. so we can consider private, protected, friendly classes as a non-public classes.
| Is This Answer Correct ? | 6 Yes | 1 No |
Can a java program have 2 main methods?
Why constructor has no return type?
How to sort an array in java without using sort method?
What does split function do in java?
What is the order of arraylist in java?
Difference between throw and throws?
Tell some latest versions in JAVA related areas?
Is null or empty java?
How many types of methods are there?
Difference between flush() and commit() in hibernate?
What is meant by polymorphism?
Explain the difference between an Interface and an Abstract class?