By default, how does Quick Test pass arguments to the procedure?
-
A. ByVal
-
B. ByRef
-
C. ByArg
-
D. ByRes
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.