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...


Why can?t you specify the accessibility modifier for
methods inside the interface?

Answers were Sorted based on User's Feedback



Why can?t you specify the accessibility modifier for methods inside the interface?..

Answer / swapna

They all must be public. Therefore, to prevent us from
getting the false impression that we have choice to access,
so we are not allowed to specify any accessibility, it's
public by default.

Is This Answer Correct ?    18 Yes 2 No

Why can?t you specify the accessibility modifier for methods inside the interface?..

Answer / karans

All members of an interface is marked as public because :
1) If Private :- The members ca not be implemented into
child class (as private members are derived into child
class).
2). If Protected :- The members can not be accessed by
instance of the class implementing members of that
interface (as protected members become private into
inherited class) even the members will not be inherited
into other child classes of class implementing interface.
c). If Public :- The members can be implemented into
child classes and can be accessed by instances of that
class as well as can be inherited into child class of that
class.

So All the members of Interface are bydefault considered
as PUBLIC.

Is This Answer Correct ?    11 Yes 0 No

Why can?t you specify the accessibility modifier for methods inside the interface?..

Answer / hafiz usman majeed

as by default public access is provided in c-sharp.net
classes and interfaces, and we use interfaces for
accompolishing the purpose of multiple inheritence we must
redefine all of the methods of interface in its inherited
class that implements it so all of these methods should be
publically accessible.

Is This Answer Correct ?    8 Yes 1 No

Why can?t you specify the accessibility modifier for methods inside the interface?..

Answer / ravikiran gullapalli

Then How it can be called as interface,

Is This Answer Correct ?    5 Yes 1 No

Why can?t you specify the accessibility modifier for methods inside the interface?..

Answer / kishore anumala

Always the access specifiers for the method in an interface
is public. We cannot implement the methods of interface if
the access specifier is other than public as we will be
left with errors like "members cannot access due to
protection level".

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More C Sharp Interview Questions

Explain Direct CAST vs CType ?

0 Answers   MCN Solutions,


What are the generation of Garbage Collection in C# .NET ?

0 Answers   MCN Solutions,


why we can't create an object for a static class?? what is the reason behind this?

4 Answers   HCL,


if i used stored procedure for retrieving the data from sql server.in front end i had used data reader.when 100 records are there in table.when it has displayed ten records in frontend database has been collapsed.then where should our data available...

2 Answers   CybAge, Wipro,


What is Implementation inheritance

0 Answers  


In languages without exception-handling facilities, we could send an error-handling procedure as a parameter to each procedure that can detect errors that must be handled. What disadvantages are there to this method?

0 Answers   HCL,


Explain synchronous and asynchronous operations?

0 Answers  


What is difference between interface inheritance and class inheritance ?

8 Answers   Digital GlobalSoft,


What is icomparer in c#?

0 Answers  


Can we inherit class that contains only one private constructor?

0 Answers  


Can you change the value of a variable while debugging a C# application?

2 Answers  


What is call back method?

0 Answers  


Categories