Answer the following statements true (T) or false (F)

1) A derived class’s constructor can invoke the base class’s constructor through an unbound method call.
2) The name of the base class can be used to access the base class version of an overridden method from the derived class.
3) Placing a comma-separated list of base classes inside parentheses in a class definition indicates multiple inheritance.
4) Polymorphism enables multiple inheritance.
5) Python does not implement polymorphism.


1) T
2) T
3) T
4) F
5) F

Computer Science & Information Technology

You might also like to view...

What is Media queries?

What will be an ideal response?

Computer Science & Information Technology

In block letter format, paragraphs begin at the left margin or may be indented 0.5".

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

A Lisp list is a recursive data structure.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Given the function prototype: ? double testAlpha(int u, char v, double t); ? which of the following statements is legal?

A. cout << testAlpha(5, 'A', 2); B. cout << testAlpha( int 5, char 'A', int 2); C. cout << testAlpha('5.0', 'A', '2.0'); D. cout << testAlpha(5.0, "65", 2.0);

Computer Science & Information Technology