Multiple choice

Which of the following statement is true about function overloading?

  1. Calling a function from another function

  2. Calling a same function with different form

  3. Calling a function from itself

  4. Calling a same function in same form every time

  5. There is no such term in C++

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

This is the correct option as calling the same function in different form allows a user to perform multiple operation with the same function and hence called as function overloading.