Please tell me the oops concept with detailed answer

Answer Posted / priya

c++ supports oops concept
that are
1.encapsulation
(gathring all information in to a single unit)
2.Polymorphism
(The ability of a function that can act on different
data types in different ways)
3 Abstraction
(Implementation of data encapsulation)
4.class- it is a collection of variables and methods
5.odjects- it is the run time entity(it is same as real
world objects)
6.inheritance-
concept of acquiring the base class properties
there are 5 types of inheritance
1.single inheritance
2.multiple inheritance
3.multilevel inheritance
4.hierarchical inheritance
5.hybrid inheritance
7.dynamic binding- data bind at runtime
8.message passing-communicating information with one another

Is This Answer Correct ?    8 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the main purpose of inheritance law?

667


Is data hiding and abstraction same?

565


What causes polymorphism?

567


What does and I oop mean?

610


How do you define social class?

594






What is coupling in oops?

591


What is the importance of oop?

605


Explain the concepts involved in Object Oriented programming.

629


Can you explain polymorphism?

576


What is the difference between procedural programming and oops?

548


Can you inherit a private class?

629


Question In a class, there is a reference or pointer of an object of another class embedded, and the memory is either allocated or assigned to the new object created for this class. In the constructor, parameters are passed to initialize the data members and the embedded object reference to get inialized. What measures or design change should be advised for proper destruction and avioding memory leaks, getting pointers dangling for the embedded object memory allocation? Please suggest. Question Submitted By :: Sunil Kumar I also faced this Question!! Rank Answer Posted By Re: In a class, there is a reference or pointer of an object of another class embedded, and the memory is either allocated or assigned to the new object created for this class. In the constructor, parameters are passed to initialize the data members and the embedded object reference to get inialized. What measures or design change should be advised for proper destruction and avioding memory leaks, getting pointers dangling for the embedded object memory allocation? Please suggest. Answer # 1 use copy constructors 0 Shanthila There is something to be taken care in destructor, in copy constructor, suppose the memory is assigned to the embedded member object pointer with the parameter passed value, but if some other objects of different class also are pointing to this memory, then if some one deletes the object then this class member pointer object will become dangling, or if the object is not deleted properly then there will be memory leak. Please suggest the design change required to handle or avoid this situation

1654


What are the important components of cohesion?

550


Is abstract thinking intelligence?

590


explain sub-type and sub class? atleast u have differ it into 4 points?

1830