Multiple choice

Inline functions make a program run faster because the overhead of a function call & return is eliminated.

  1. True

  2. False

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

Inline functions eliminate the function call and return overhead by replacing the call site with the actual function body at compile time. This avoids stack frame creation, parameter passing, and jump instructions, which can improve execution speed for small, frequently called functions.