Multiple choice technology

Local variable is reinitialized each time the transform function is called. Is the statement true/false?

  1. True

  2. False

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

Local variables in transform functions have scope limited to each function call. They are reinitialized every time the transform function is invoked, ensuring clean state for each record processed unlike static or global variables.