Multiple choice

Which of the following is not an advantage of using function in C++ program?

  1. It debuggs a program easily.

  2. It consumes less disk space.

  3. Recursive calls to function is possible.

  4. Testing a program becomes easier.

  5. Complexity of a program is reduced.

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

This is the correct option as usage of function in the program consumes more disk space than without using a function.