What is access modifiers?
Answer / sumit pal singh
In java there are four type of access modifier.
1.private:It is accessible only within the class.
2.default:If you don't use any modifier then it is treated as default bydefault .it is accessible within package.
3.protected:The protected access modifier is accessible within package and outside the package but through inheritance only.
4.public:The public access modifier is accessible everywhere. It has the widest scope among all other modifiers.
The access Modifier in java specify the scope of data member,method,constructor and class.
| Is This Answer Correct ? | 2 Yes | 1 No |
Which methods cannot be overridden in java?
What is the difference between C++ & Java?
78 Answers College School Exams Tests, HAL, SUN, Syntel, TCS, Wipro,
What do you mean by local variable and instance variable?
A non-static inner class may have object instances that are associated with instances of the class’s outer class. A static inner class does not have any object instances.
who was the founder of java
32 Answers CTS, HCL, ProKarma,
In java, how we can disallow serialization of variables?
write a program that list all permutations of ABCDEF in which A appears before B?
java is pure object-oriented programming language?why it is platform independent.
What is the difference between hashmap and hashtable in java?
what is j2se
What are the Abstract Classes provided by Java?
Why should we use java?