What is public, protected, private?

Answers were Sorted based on User's Feedback



What is public, protected, private?..

Answer / khadeer.k

public:
public is an access specifier which can be used throughout
the program.
protected:
protected is an access specifier which can be used in the
specified class and its derived class...
private:
private is an access speifier which can be used whithin the
class in which it is declared.

Is This Answer Correct ?    20 Yes 2 No

What is public, protected, private?..

Answer / yughandhar

public:
public is an access specifier which can be used throughout
the program.
protected:
protected is an access specifier which can be used in the
specified class and its derived class...
private:
private is an access speifier which can be used whithin the
class in which it is declared.

These three access specifiers are used for providing the
security

Is This Answer Correct ?    7 Yes 1 No

What is public, protected, private?..

Answer / prashanth

public,protected,private are access modifiers where public
is used for acess the methods and variables to unlimited
extent.
private:is used to access the variables upto the enclosing
region
protected:and it is limited to class itself or classes that
are derived

Is This Answer Correct ?    5 Yes 0 No

What is public, protected, private?..

Answer / yughandhar

they are acceses specifieres.
these are used for security purpose

Is This Answer Correct ?    4 Yes 2 No

What is public, protected, private?..

Answer / priya

public:public is a access specifier and it is used to access
class member through out the program .
private:private is a access specifier by default our variables are private when we didn't specify any data type for our variable.
protected:protected is a access specifier and its a immediate to derived class.

Is This Answer Correct ?    2 Yes 0 No

What is public, protected, private?..

Answer / reena ashok mohite

Public, Protected And Private these Are the Access Specifier Which We Use In Within The Class,
We Can Use Protected Access specifier In The Class And Its Derived Class,
we Can Use Public Access Specifier throught out the class,
(Anywhere In The Class)
And Private Specifier Can Be Accessable Within The Class Where It Is Declared........
This Is Useful To Data Hiding Purpose

Thanks........

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More OOPS Interview Questions

Why is destructor used?

0 Answers  


inheritence with example

1 Answers  


OOP'S advantages of inheritance include:

1 Answers   Infosys,


Get me a number puzzle game-program

0 Answers  


When is a memory allocated to a class?

11 Answers  






Describe these concepts: Polymorphism, Inheritance and Abstraction.

0 Answers   TCS,


A file pointer always contains the __________ of the file

5 Answers  


WHY FUCTION OVERLOADING DOSENOT RETURN A RETEN TYPE

2 Answers  


What is abstraction in oop with example?

0 Answers  


what are the ways in which a constructors can be called?

2 Answers   TCS,


Why a "operator=(...)" when there is a copy ctor?

2 Answers  


What is memory leak and memory corruption?

1 Answers   TCS,


Categories