000-041: Programming with IBM Enterprise PL/I

  • 876
  • 0

摘要:000-041: Programming with IBM Enterprise PL/I

IBM certifications II 000-041考試題庫由TestPassPort資深IT認證講師和IBM certifications II產品專家結合PROMETRIC或VUE的真實000-041考試環境最新原題傾心打造。

題庫覆蓋了當前最新的真實考題,並且全部附有正確答案,我們承諾題庫對IBM certifications II 000-041(Programming with IBM Enterprise PL/I)考試原題完整覆蓋。000-041題庫助您輕鬆通過認證考試,一次不過全額退款。
1.What is the result, if any, of executing the following code? DCL A BIT(1) INIT('0'B); DCL B BIT(1) INIT('0'B); DCL C BIT(1) INIT('1'B); A = B ! C;
A.The value of A is '0'B
B.The value of A is '1'B.
C.The value of A is unpredictable.
D.There is no result, because the syntax is wrong.
Correct:B
2.What does BX.WOK.LOAD refer to in the following job control statement? //ACCOUNT DD DSN=BX.WOK.LOAD,DISP=SHR
A.It is the connection between program and dataset.
B.It is the physical dataset name.
C.It is the logical dataset name.
D.It is the name which must be referred to in the program.
Correct:B
3.What will be printed when the following subroutine is called for the third time? A : PROC; DCL X PIC '9' INIT(0); X = X + 1; PUT SKIP LIST ('THE VALUE OF X IS :'!!X); X = X + 1; END A;
A.THE VALUE OF X IS :1
B.THE VALUE OF X IS :2
C.THE VALUE OF X IS :3
D.THE VALUE OF X IS :5
Correct:A