Home / C++ Programming / Objects and Classes :: Discussion

Discussion :: Objects and Classes

  1. What does the class definitions in following code represent?

    class Bike {     Engine objEng; }; class Engine {     float CC; };

  2. A.
    kind of relationship
    B.
    has a relationship
    C.
    Inheritance
    D.
    Both A and B

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    No answer description available for this question.


Be The First To Comment