Multiple choice

_________ is a function that can be called using class name.

  1. Member function

  2. Static member function

  3. Inline function

  4. Recursive function

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

A static member function can be called using the class name instead of its objects and it makes the use of static data members only.