Answer Posted / chandra rekha
Access modifiers is different from Access specifiers. The
access specifiers tells whether member data\methods\classes
of a class can be accesible or not by other
classes\subclasses\packages whereas the modifiers tells how
the memberdata\methods\classes can be used by other classes.
The access specifiers available in java are
Public,private,protected,default(friend or package).
The modifiers available are
static:can be applied to member data,methods,inner
classes.used to define class variables and methods that
belong to the a class but not to any particular instance of
class.all the variables share the same static method.
final:(variables,methods,classes) final modifier indicates
that the variable\method\class cannot be modified in any
other classes\subclasses\packages.
abstract:(classes) used to declare classes having same
properties and methods.abstract classes are used to derive
classes of the same type.
native:(methods) indicates that the code is out of java
runtime environment,written in some other programming
language other than java.
synchronized:(methods) used to control access to a
particular method in a multithreaded java program.
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
What is the difference between jdk, jre, and jvm?
What is the difference between yield() and sleep()?
What do you understand by private, protected and public?
Where are register variables stored?
How do you delete a list in java?
What are the characteristics of java?
What are the major drawbacks of external iteration?
What happens if we don’t define serial version uid?
a thread is runnable, how does that work? : Java thread
What isan abstract class and when do you use it?
what is session in java?
In case of inheritance what is the execution order of constructor and destructor?
Can a private method be declared as static?
Why is stringbuffer faster than string?
What is meant by nested loop?