what is the Diff. between Access Specifiers and Access
Modifiers?

Answers were Sorted based on User's Feedback



what is the Diff. between Access Specifiers and Access Modifiers?..

Answer / venkat

Access Specifiers :

public,private,protected and default.


Access Modifiers :

abstract,native,transient,final,static,volatile and
strictfp.

Is This Answer Correct ?    1 Yes 1 No

what is the Diff. between Access Specifiers and Access Modifiers?..

Answer / sujit kumar nishank

Access specifier :- it is used in java when we declare a method,viarable or class then it specify how it access to other classes .
. it is of 4 types
public(access everywhere like any classes and any package and inherited)
private(access itself with in the package and it is not inherited)
protected(access any classes with in the same package and it is inherited)
defaults(it same as protected but not inherited )

access modifier
final
static
abstract

Is This Answer Correct ?    1 Yes 1 No

what is the Diff. between Access Specifiers and Access Modifiers?..

Answer / jiggi

Class Modifiers / Member Modifiers

Modifiers :
public protected private
abstract static final synchronized native strictfp

The access modifiers are public, protected and private

The modifier (non Access modifiers) abstract static final synchronized native strictfp

Modifiers are also called as Specifiers

Ref :Java language Specification 8

Is This Answer Correct ?    0 Yes 0 No

what is the Diff. between Access Specifiers and Access Modifiers?..

Answer / sunil

Acess specifers gives acess privelages to outside
application ot to others. they are public protected,
private,Defaults.


Acess Modifers gives additional meaning to data ,methods
clasees like final, abstract

Is This Answer Correct ?    8 Yes 9 No

what is the Diff. between Access Specifiers and Access Modifiers?..

Answer / arun

In old laguages like c,c++ we have public,private,protected and default are considered as "Access specifiers" but all remaining considered as "Access modifiers".

But in case of Java there is no such type of difference .all are(public,private,protected,default,final,abstract,strictfp,native,synchronized,transcient,volatile and static) considered as "Access modifiers"

Is This Answer Correct ?    0 Yes 1 No

what is the Diff. between Access Specifiers and Access Modifiers?..

Answer / deepthi

for the access specifiers we use one at time i.e,public int a;
bt for the access modifiers we can use two at a time i.e, static final int a;

Is This Answer Correct ?    0 Yes 1 No

what is the Diff. between Access Specifiers and Access Modifiers?..

Answer / vijay

Access Specifiers :

1. Private
2. Public
3. Default
4. Protected


Non - Access Specifiers (Access Modifiers):

1. Abstract
2. Final
3. Native
4. Static
5. Synchronized
6. Transient
7. Volatile
8. Strictfp

Is This Answer Correct ?    0 Yes 1 No

what is the Diff. between Access Specifiers and Access Modifiers?..

Answer / indrabahadur singh

Access specifiers ::

The access specifier determines how accessible the field is
to code in other classes. Access ranges from totally
accessible to totally inaccessible. You can optionally
declare a field with an access specifier keyword: public,
private, or protected.


Access Modifiers ::

You can optionally declare a field with a modifier keyword:
final or volatile and/or static and/or transient.

Is This Answer Correct ?    0 Yes 2 No

what is the Diff. between Access Specifiers and Access Modifiers?..

Answer / prema

Access Specifier: It controls the access of class members
and variables by other objects.
Types of access specifiers in Java:
public
private
protected
friendly or package or default

Access Modifiers: Modifiers determine or define how the data
members and methods are used in other classes and objects.
Modifiers in Java:
static
final
abstract
native
synchronized

The main difference between access specifiers and modifiers
is that access specifiers define the accessibility of the
data members in a class and modifiers determine how these
methods are used and modified by other classes

Is This Answer Correct ?    1 Yes 3 No

what is the Diff. between Access Specifiers and Access Modifiers?..

Answer / ejp

Still wrong. Don't you people read the thread? There is no
such thing as an access specifier in Java.

Is This Answer Correct ?    6 Yes 9 No

Post New Answer

More Core Java Interview Questions

Write an algorithm for quick sort?

0 Answers   Virtusa,


What is thread pool in java with example?

0 Answers  


What is meant by constructor?

8 Answers  


What is a numeric format?

0 Answers  


This is my code i have a doubt class ab implements a,b { public void add() { System.out.println("Hi") } } interface a { public void add(); } interface b { public void add(); } in this code i have two interface implemented in the class has same method.just i want to know which method of interface implemented in the class. interface a or interface b? confused me .

3 Answers  






Explain scope or life time of local variables in java?

0 Answers  


What is data abstraction? Elaborate with example?

4 Answers   BMC, TCS,


What are the default and parameterized constructors?

0 Answers  


what is different between static and non static methods ,using example

2 Answers  


What is the difference between an array and an array list?

0 Answers  


what state does a thread enter when it terminates its processing? : Java thread

0 Answers  


What is I/O Filter?

2 Answers   TCS, WAX,


Categories