How is data security provided in Object Oriented languages?
?

Answers were Sorted based on User's Feedback



How is data security provided in Object Oriented languages? ?..

Answer / achal

in object oriented languages emphasis is laid on not to
have any global code(functions or variables.) Everything is
encapsulated inside the body of a class.
The objects of the class can access only the public members
of class. So the data mambers are more secure.

Is This Answer Correct ?    6 Yes 0 No

How is data security provided in Object Oriented languages? ?..

Answer / guest

In c++,
Data is encapsulated(hidden) in the form of specifiers such as:

private: accessible only to members of class.

public: accessible everywhere.

protected :accessible only to the members that are
inherited(see inheritance)

Is This Answer Correct ?    4 Yes 0 No

How is data security provided in Object Oriented languages? ?..

Answer / channu

using class

Is This Answer Correct ?    5 Yes 3 No

How is data security provided in Object Oriented languages? ?..

Answer / ramakrishna yechuri

Data security is provided with the help of
access specifiers called private,protected.
A variable which is declared as private cannot be acceced
outside the class.

Total data is binded or encapsulated in the form of
class.
A class itself is an example for encapsulation.

Is This Answer Correct ?    2 Yes 0 No

How is data security provided in Object Oriented languages? ?..

Answer / harika

by providing access specifier
private

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More OOPS Interview Questions

Can we define a class within the interface?

0 Answers  


What is variable example?

0 Answers  


what is costructor?

1 Answers  


Why do we use class?

0 Answers  


In c++ there is only virtual destructors, no constructors. Why?

4 Answers   IBM, Polaris,






Write a program in c++ to read two floating point numbers and find their sum and average.

2 Answers  


What is encapsulation with real life example?

0 Answers  


What is oops in simple words?

0 Answers  


Write pseudo code for push in a stack?

2 Answers   emc2,


What are the features of oop?

0 Answers  


What is a macro? And how is a macro same as a template?

4 Answers  


What is abstraction in oop with example?

0 Answers  


Categories