1.what are two type of classe members called?
2.what is data hiding and data encapsulation?
3.how do you make a class member visible aouside its class?
4.what is the default visibility of a class data member?
5.what are the advantages of oop over the structured
programing?
Answer Posted / n.shyam sunder rao
1.Static & Non-static
2.covering all entities like function,variables, data type
within a single entity called as class is known as data
encapsulation.
Data hiding refers to the privacy of information that are
seen within the class that is not visible to the functions
outside the class.
3.By using access specifier public.
4.default scope, that is same class,subclass with in the
same package,other classes within the same package.
5.i).Overloading functions.
ii).Code Re usability.
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is encapsulation oop?
Can destructor be overloaded?
Why can't we have instance(stack) of a class as a member of the same class like eg.Class A{A obj;} as we can have self refential pointer
What is abstraction encapsulation?
Is html an oop?
write a C++ program for booking using constructor and destructor.
What do you mean by abstraction?
What is the difference between encapsulation and polymorphism?
What is multilevel inheritance explain with example?
Why is polymorphism used?
What is difference between pop and oop?
What is polymorphism and its types?
What is the advantage of oop over procedural language?
What causes polymorphism?
What is meant by multiple inheritance?