InterviewSolution
Saved Bookmarks
| 1. |
What is the significance of using the "//" symbol in JCL? |
|
Answer» It is an important symbol used in JCL statements since EVERY JCL statement must begin with it. JCL statements must satisfy this rule in order to EXECUTE properly. Otherwise, the JCL statement will fail. During JCL execution, the system checks for the symbol (//) at the beginning of each statement. This prevents runtime exceptions. Example: //STEP010 EXEC PGM=MYCOBOL,PARAM=CUST1000Here, |
|