Explain the ISA and HASA class relationships. How would you
implement each in a class design?

Answers were Sorted based on User's Feedback



Explain the ISA and HASA class relationships. How would you implement each in a class design?..

Answer / nishikant sahu

"ISA" a relationship is aka Inheritance and used to extent
the capability of Base, whereas "HASA" relationship is aka
Containment use to take the all properties of BASE.

Is This Answer Correct ?    19 Yes 3 No

Explain the ISA and HASA class relationships. How would you implement each in a class design?..

Answer / neelkamal yadav

A specialized class "is" a specialization of another class and, therefore, has the ISA relationship with the other class. An Employee ISA Person. This relationship is best implemented with inheritance. Employee is derived from Person. A class may have an instance of another class. For example, an employee "has" a salary, therefore the Employee class has the HASA relationship with the Salary class. This relationship is best implemented by embedding an object of the Salary class in the Employee class.

The answer to this question reveals whether the applicant has an understanding of the fundamentals of object- oriented design, which is important to reliable class design.

There are other relationships. The USESA relationship is when one class uses the services of another. The Employee class uses an object (cout) of the ostream class to display the employee's name on the screen, for example. But if the applicant gets ISA and HASA right, you don't need to go any further.

Is This Answer Correct ?    0 Yes 0 No

Explain the ISA and HASA class relationships. How would you implement each in a class design?..

Answer / guest

A specialized class "is" a specialization of another class
and, therefore, has the ISA relationship with the other
class.
This relationship is best implemented by embedding an
object of the Salary class in the Employee class.

Is This Answer Correct ?    9 Yes 13 No

Post New Answer

More C++ General Interview Questions

Write a function which takes a character array as input and reverses it in place.

2 Answers   Lehman Brothers, Vision Infotech,


What is constructor c++?

0 Answers  


Define a constructor?

0 Answers  


Explain "passing by value", "passing by pointer" and "passing by reference" ?

5 Answers  


What is difference between rand () and srand ()?

0 Answers  


What is virtual destructors? Why they are used?

1 Answers  


What is the use of volatile variable?

0 Answers  


What is the difference between C and CPP?

0 Answers   iNautix,


Define the process of error-handling in case of constructor failure?

0 Answers  


Write my own zero-argument manipulator that should work same as hex?

0 Answers  


What does the following do: for(;;) ; a) Illegal b) Loops forever c) Ignored by compiler...not illegal

0 Answers  


Explain deep copy?

0 Answers  


Categories