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 / sidhartha
1) Data members and member functions.
2) Wrapping up of data into a single logical unit is known
as data encapsulation.
3) By using public specifier in the class.
4) private specifier is the default visibility mode.
5) (a)It is a bottom up approach.
(b)Emphasis is on data.
(c)large programs can be divided into objects.
(d)objects have their relevant own data.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is oops with example?
What are classes oop?
What exactly is polymorphism?
What are the types of abstraction?
How Do you Code Composition and Aggregation in C++ ?
What is meant by multiple inheritance?
Can we create object of interface?
What is the purpose of polymorphism?
What causes polymorphism?
What is object in oop?
Where is pseudocode used?
Why interface is used?
Why is oop better than procedural?
What does <> mean pseudocode?
What is encapsulation oop?