What are different types of access modifiers?

Answers were Sorted based on User's Feedback



What are different types of access modifiers?..

Answer / venki

Private : It can access with in the class only
public :It can Access Any where
proteced:It can access with in the package and sub class of
the package also
default:it access with in the package only.

Is This Answer Correct ?    13 Yes 3 No

What are different types of access modifiers?..

Answer / shekhar suchak

private:it can be access within the block or we can aslo say that within the class.

public:"every where,any where" just one line ans.

protected:it can be access within package and outside of package.but there should be inheritense.

default:it will be access within the package.

class can not be private and protected.its only default and public.we dont have to mention 'default' keywords it always be there,but invisible.

Thanks & Regards

Is This Answer Correct ?    0 Yes 0 No

What are different types of access modifiers?..

Answer / nani

Private : It can access with in the class only
public :It can Access Any where in java program
proteced:It can access with in the package and sub class of
the package also
default:it access with in the java program.

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More Core Java Interview Questions

What is a boolean flag in java?

0 Answers  


Write code to implement bubble sort in java?

0 Answers  


I want to know the host name and provider name for tcs web mail

5 Answers   RSG, TCS,


Is it possible to write static method in abstract class? justyfy your answer?

5 Answers   Hexaware,


Are there structures in java?

0 Answers  


What is primitive data type in java?

0 Answers  


How to sort an array in java without using sort method?

0 Answers  


What are types of Java applications?

14 Answers  


What is file in java?

0 Answers  


What is data type in computer?

0 Answers  


Explain about the main() method in java?

0 Answers  


What are the two ways of implementing multi-threading in java?

1 Answers  


Categories