000-041 試験問題を無料オンラインアクセス
| 試験コード: | 000-041 |
| 試験名称: | Programming with IBM Enterprise PL/I |
| 認定資格: | IBM |
| 無料問題数: | 146 |
| 更新日: | 2026-07-11 |
CORRECT TEXT
Under default condition enablement, what is the result of executing the following code?
DCLX CHAR(5) INIT('A1234');
DCL Y PlC '9999' INIT(0);
Y = X;
CORRECT TEXT
Given the following code, what will be the output of the preprocessor?
%DCL FLAG CHAR;
%FIag = 'TEST ,OPT';
%DCL FUN ENTRY; FUN(FIag)
%FUN: PROC (S);
DCL S CHAR;
IF INDEX(S, 'TEST') > 0 THEN
ANSWER ('put ("Test modus entered");') SKIP;
IF INDEX(S, 'OPT') > 0 THEN ANSWER ('put ("Optimize modus entered");') SKIP;
%END FUN;
CORRECT TEXT
What is the result of executing the following code?
DCL A CHARACTER (4) INIT('10.5');
DCL B DEC FIXED(71) INIT(10.5);
B = A + B;
CORRECT TEXT
Given the following code, which SIGNAL statement would cause a new page starting with the line 'header text' to be written to file X?
DCLX FILL STREAM PRINT OUTPUT;
ON ENDPAGE(X) PUT SKIP FILE(X) LIST('header text');