What does IN/OUT mean when declaring variables?
A. DavidCrow quoted :- Basically, it indicates when the variables will contain valid information. IN indicates that the variable has valid information when calling the function; OUT indicates that the variable will have valid information after the called function returns. See “pass by reference” and “pass by value” for related information.