Multiple choice technology web technology

Consider the following:// SET GROUP=TBIS,DIV=USR,SUBJ=JCL,TYPE=DATA,NMBR=1Which of the following structures containing symbolic parameters will result in:TBISUSR.JCLCRS.DATA1?

  1. &GROUP&DIV.&SUBJCRS.&TYPE&NMBR

  2. &GROUP&DIV..&SUBJ.CRS.&TYPE&NMBR

  3. &GROUP.&DIV..&SUBJ.CRS.&TYPE.&NMBR.

  4. &GROUP.&DIV..&SUBJ.CRS..&TYPE.&NMBR.

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

JCL symbolic parameters resolve directly without adding separators; undefined symbols default to empty. Option B resolves as TBIS+USR (no separator) + literal dot + JCL.CRS + literal dot + DATA+1 = TBISUSR.JCLCRS.DATA1. Option C resolves similarly with trailing dot ignored. Options A and D are incorrect because they don't produce the required string structure.