Multiple choice technology mainframe

How should a comment statement start in a JCL?

  1. //

  2. /*

  3. **

  4. //*

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

JCL comment lines begin with //* in the first two columns. The //* sequence indicates that the rest of the line is a comment. Option A // is used for JCL statements (not comments). Option B /* is C-style comment syntax (not JCL). Option C ** is not JCL comment syntax. Only Option D //* correctly identifies the JCL comment format.