Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


what are the different access specifiers that can be used
by interfaces and abstract classes? can anyone give me
detailed description on this

Answers were Sorted based on User's Feedback



what are the different access specifiers that can be used by interfaces and abstract classes? can ..

Answer / vishal arora

This question leads to two things
1. modifier for abstract class or interface
2. modifier for members of abstarct class or interface

For first in abstract class and interface we can have
public , protected and default and not private if it is top
level otherwise private also if it is nested

for point 2
in an interface every member variable is public and final
in an abstract class you can assign any modifier to member
variables

Is This Answer Correct ?    10 Yes 0 No

what are the different access specifiers that can be used by interfaces and abstract classes? can ..

Answer / neha jain

i feel with interface we can use public and default.and
with abstract we can use all except private

Is This Answer Correct ?    10 Yes 2 No

what are the different access specifiers that can be used by interfaces and abstract classes? can ..

Answer / lydia fernandes

Interface: Public or default
Abstract Class (Anything ) : public , private or Default

Is This Answer Correct ?    5 Yes 0 No

what are the different access specifiers that can be used by interfaces and abstract classes? can ..

Answer / uday

Interface: Public or default
Abstract Class (Anything ) : public , private or Default


Iam sure about these answears
-uday

Is This Answer Correct ?    7 Yes 3 No

what are the different access specifiers that can be used by interfaces and abstract classes? can ..

Answer / dhiren

public accsess specifier means it can publically accessed
by the class whether it's subclass of that class or present
in same packege or diffrent classes.

private access specifier is private to that class i.e. it
cant access out side the class

procted -it's accesesed by the sub class of the ckass
whether that present in the sane package or diffrent but it
must be a subclass

noacces accessed with in the same package

Is This Answer Correct ?    5 Yes 3 No

what are the different access specifiers that can be used by interfaces and abstract classes? can ..

Answer / ismail

interface can be only public or default and abstract class
should be public protected

Is This Answer Correct ?    3 Yes 1 No

what are the different access specifiers that can be used by interfaces and abstract classes? can ..

Answer / bhumika

interface can use public and default.and
abstract classes can use all of them including private.

Is This Answer Correct ?    2 Yes 0 No

what are the different access specifiers that can be used by interfaces and abstract classes? can ..

Answer / malay tripathi

I guess if members of interface are declared final then
they can't be overridden & hence this hampers the logic
behind having interfaces...

Interface can only be Public/Default or abstract.In any
other case it can't be overridden & hence of no use.

MemberFunctions also behave similarly.

Is This Answer Correct ?    4 Yes 3 No

what are the different access specifiers that can be used by interfaces and abstract classes? can ..

Answer / karishma

Interface default access specifier are public and Static

Is This Answer Correct ?    0 Yes 0 No

what are the different access specifiers that can be used by interfaces and abstract classes? can ..

Answer / prasanna

public
private
protected
default

Is This Answer Correct ?    8 Yes 11 No

Post New Answer

More Core Java Interview Questions

Can singleton class be serialized?

0 Answers  


public class Test { public static void main(String ar[]) { Integer a = 10; Integer b =10; Integer c = 145; Integer d = 145; System.out.println(a==b); System.out.println(c==d); } }

7 Answers   iGate,


How do I write a self declaration?

0 Answers  


What are memory tables?

0 Answers   Aspiring Minds,


What is the difference between Error, defect,fault, failure and mistake?

0 Answers   HCL,


How can an object be unreferenced?

0 Answers  


What are runtime exceptions?

0 Answers  


whether java is fully object oriented language or partially object oriented language

4 Answers   Infosys, ME, SMK,


How do you create an array in java?

0 Answers  


write java code to print second max number in the array

12 Answers   Huawei, IBAB,


What are unchecked exceptions in java?

0 Answers  


can we take more than one null values for Unique constraints.

1 Answers   3i Infotech,


Categories