Multiple choice technology mainframe

--------- Passes control information to the job step via the linkage section in the program?

  1. parm=value

  2. parm='value'

  3. parm=(value)

  4. parm(=value)

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

In JCL, parameters are passed to a program via the PARM parameter using single quotes: PARM='value'. The value is then available in the program's linkage section. Double quotes, parentheses around the value, or equal signs inside parentheses are not valid syntax for parameter passing.