Multiple choice technology programming languages

Inline functions are invoked at the time of

  1. Run time

  2. Compile time

  3. Depends on how it is invoked

  4. Both b and c

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

Inline functions are expanded in place by the compiler at compile time rather than being invoked via normal function call overhead at run time. This direct expansion reduces execution overhead, making compile time the correct phase for this mechanism.