can any one tell me what is advantage of encapsulation
Answer Posted / shalini
any programming lang. constitutes of two parts
1. logics 2. data
out of the above two, data is more important coz logics
lost can be rewritten but data once lost can never be
retrieved, hence data is more imp, but in the languages
like C and C++, there is a high chance of loosing the data
coz of the global variable concept, there is a very high
insecurity coz of global variables. So in order to overcum
the disadvantage of global var, encapsulation was
introduced, coz encapsulation eliminates the concepts of
global var, and the entire data is encapsulated at one
place, what u call it as class...hence encapsulation forms
the basis for OOPS concept
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What are register variables what are the advantages?
1.IN CASE OF DYNAMIC METHOD DISPATCH WHY WE USE REFERENCE VARIABLE,WE CAN USE THE DIFFERENT DEFINED OBJECT DIRECTLY TO ACCESS THE DATA MEMBER AND MEMBER FUNCTION OF THAT RESPECTIVE CLASS?WHAT IS THE MAIN FUNCTION OF "REFERENCE VARIABLE" HERE?
Does java linked list allow duplicates?
Explain wait() method of object class ?
What is hashtable and explain features of hashtable?
What is callable java?
Can we have multiple public classes in a java source file?
what is the difference between yielding and sleeping? : Java thread
What is the difference between ArrayList and Vector? which one is better in Java
Why singleton is not thread safe?
Why is an interface be able to extend more than one interface but a class can’t extend more than one class?
What is the implementation of destroy method in java. Is it native or java code?
Why we use multi threading instead of multiprocessing?
Can a constructor call the constructor of parent class?
What is a Hash Table? What are the advantages of using a hash table?