Multiple choice

Which of the following is NOT an advantage of functions?

  1. It saves disk space.

  2. Debugging (Removing the errors) is easy.

  3. Recursive calling is possible.

  4. Makes the program easier to understand.

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

Functions are programs that have names and perform a particular task. They are mostly used to perform a task again and again. They allow the users to reuse the same code without having to rewrite it. They are not considered to save disk space but they do save primary memory (RAM).