what is difference betwenn Access Specifier and Access
Modifier ????
Answers were Sorted based on User's Feedback
Answer / praveen111tripathi
Access Specifiers specify the scope of anything(D.M,Member
function ,class)while Access modifiers define that thing's
accessibility in different scops
A.S. in java
1-Public
2-default
3-protected
4-private
A.M. in java
static,final etc.
| Is This Answer Correct ? | 19 Yes | 1 No |
Answer / sudhir dhumal
Access specifiers specify the access level.
There are four access specifiers:
public, private, protected and default
Access modifiers are the keywords used to modify the statement and specify the access level.
There are three access modifiers:
public, private and protected
*Here we don't write default which means we are not modifying the statement so its not a access modifier it just specify the access level
| Is This Answer Correct ? | 1 Yes | 0 No |
What design pattern you have used in your project? I answered Factory pattern, how it is implemented? What are its advantage? Do know about Abstract Factory?
What do you mean by multithreaded program?
What is the difference between serialization and deserialization?
Advantages of Inheritance in java.
If an application has multiple classes in it, is it okay to have a main method in more than one class?
What is the console in java?
What is default size of arraylist in java?
Can you pass by reference in java?
What is stringreader?
explain the difference between jdk and jvm?
why java is platform independent?
How do constructors use this() and super()?