Multiple choice technology mainframe

A DD statement has 2 types of parameters. Name them ?

  1. Keyword, Control

  2. Positional, Keyword

  3. Dynamic, Static

  4. Named, Dynamic

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

DD statements in JCL have two parameter types: Positional parameters (order matters, like dataset name) and Keyword parameters (identified by keyword=value syntax, like DISP=OLD). This distinction is fundamental to JCL syntax. Positional parameters must appear in specific order, while keyword parameters can appear in any order after positional ones.