Derivation of Child class from Base class symbol - Inheritance

Q.  The derivation of Child class from Base class is indicated by ____ symbol.
- Published on 17 Jul 15

a. ::
b. :
c. ;
d. |

ANSWER: :
 

    Discussion

  • Raj   -Posted on 12 Oct 15
    The derivation of Child class from Base class is indicated by : symbol.
    Example:
    class baseClass
    {
    // Implementaion here
    };
    class deriveClass: public baseClass
    {
    // Implementaion here
    };

Post your comment / Share knowledge


Enter the code shown above:
 
(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)