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 byval and byref? What are differences between them?
What is overloading in oop?
Why do pointers exist?
What is encapsulation process?
when to use 'mutable' keyword and when to use 'const cast' in c++
Give two or more real cenario of virtual function and vertual object
What type of loop is a for loop?
What is Difference Between Inheritance and creating object and getting data? means Class A extends B{ B.getMethod();} (OR) Class A{ b obj=new B(); obj.getMethod(); }
Why do we need polymorphism in c#?
Why is there no multiple inheritance?
What is for loop and its syntax?
What are properties in oop?
What is polymorphism and its types?
What is overriding in oop?
What polymorphism means?