C6030-041 試験問題を無料オンラインアクセス
| 試験コード: | C6030-041 |
| 試験名称: | Programming with IBM Enterprise PL/I |
| 認定資格: | IBM |
| 無料問題数: | 146 |
| 更新日: | 2026-07-23 |
CORRECT TEXT
Which of the following must be used to load and unload a program to and from main memory?
CORRECT TEXT
What is the value of B after executing the following code?
DCL A CHAR(10) VAR;
DCL B BIN FIXED(31) INIT(0);
DCL C CHAR(5) INIT('ABCD');
A = C;
B = LENGTH(A);
CORRECT TEXT
Given the following declaration, the compiler will issue the message "The variable RX is declared without any data attributes." What possible problem is this message reporting?
DCL RX, RY FIXED BIN;
CORRECT TEXT
To validate the assignment in the following code, which condition should be enabled?
TEST: PROC(A, B);
DCL (A, B) CHAR (*);
A = B;
END;