C6030-041 試験問題を無料オンラインアクセス
| 試験コード: | C6030-041 |
| 試験名称: | Programming with IBM Enterprise PL/I |
| 認定資格: | IBM |
| 無料問題数: | 146 |
| 更新日: | 2026-05-28 |
CORRECT TEXT
What does BX.WOK.LOAD refer to in the following job control statement?
I/ACCOUNT DD DSN=BX.WOK.LOAD,DISP=SHR
CORRECT TEXT
What is the output of the following program?
MAIN: PROC OPTIONS(MAIN);
DCL
1 A UNION,
2 5 CHAR(4) INIT('FADE'),
2 C CHAR(2);
C = 'BA';
PUT SKIP LIST( B !! C);
END;
CORRECT TEXT
Given the following code, how many elements of A will contain a value of 0 after execution of the
loops?
DOL A DIM (8, 10) FIXED BIN (31);
DCL(I, K) FIXED BIN (31) INIT (0);
A = 0;
DO I = 2 TO 8;
DO K = 1 TO 10;
A(I, K) = l*K;
END;
END;