How is data security provided in Object Oriented languages?
?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
What are the important components of cohesion?
What is persistence in oop?
what is static?
what is virtual function in c++
should we use linear search or binary search if elements are placed in random order or mixed?in both cases? i need a little bit detail ans?thnks
Why do we use class in oops?
what is object oriented programming and procedure oriented programming?
Why is polymorphism important in oop?
I am DeePu sotware engineer working with EMC corporation ,recently I had attended mcafee interview . Their questions were at heights of stupidity , I don't know what they want , I am a developer with 4 year experienced .I am listing the questions asked 1:What is the flag in g++ to avoid structure padding 2:In wht order parameters are passed to stack 3:How you will edit code segment of an exe
What is the difference between static polymorphism and dynamic polymorphism?
swapping program does not use third variable
Which language is not a true object oriented programming language?