Difference between Parsing and Passing?
You are passing them.
"Parsing" means trying to interpret text or strings and break it down into data elements of some kind. (For example, you could parse a string describing a date to turn it into a date object, or parse a file containing source code and turn it into an executable.)
Passing. Parsing is breaking up / interpreting strings.