Multiple choice technology testing

By default, how does Quick Test pass arguments to the procedure?

  1. A. ByVal

  2. B. ByRef

  3. C. ByArg

  4. D. ByRes

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

Quick Test Professional (QTP) passes arguments to procedures by reference (ByRef) by default, meaning the procedure receives a reference to the original variable. This allows the procedure to modify the original variable's value, which is efficient for memory usage but requires awareness of potential side effects.