IBM Developing with IBM Enterprise PL/I - C9050-042 FREE EXAM DUMPS QUESTIONS & ANSWERS

The lead developer has reviewed the team's progress and determined that the deadline of one week
cannot be met since all of the modules have not been thoroughly tested. Which of the following is the best
action for the lead developer to take?
Correct Answer: D Vote an answer
PL/I programs which have been written under Intel architecture are now to be recompiled and run on the
mainframe. What will happen to the programs during compilation and execution?
Correct Answer: D Vote an answer
Given the following code, which set of statements will insert the new element into the doublylinked list
after the element pointed to by P?
DCL1X BASED,
2 FORWARD POINTER,
2 BACKWARD POINTER,
2 DATA FIXED BIN (31);
ALLOC X SET(Q);
Correct Answer: A Vote an answer
Given the lollowing declarations, what statement will raise STRINGSIZE condition if enabled?
DCLA_STR CHAR (100) VARYING;
DCLB_STR CHAR(10) STATIC;
DCL C_STR CHAR (100);
Correct Answer: D Vote an answer
Which of the following is LEAST likely to be performed by a batch program?
Correct Answer: C Vote an answer
In a multithreading environment, when can a deadlock occur between two threads, if at all?
Correct Answer: A Vote an answer
Requirement Copy a dataset of record length 100 to another dataset.
If the following code does not fulfill the requirement above, which is the most likely reason?
DCL DDIN FILE RECORD INPUT;
DCL DDOUT FILE RECORD OUTPUT;
DCL INSTRUC CHAR(100);
DCL EOF_IN BIT(1) INIT('0'B);
ON ENDFILE(DDIN) EOF_IN = '1'B;
READ FILE(DDIN) INTO(INSTRUC);
DO WHlLE(^EOF_IN);
WRITE FILE(DDOUT) FROM(INSTRUC);
READ FILE(DDIN) INTO(INSTRUC);
WRITE FILE(DDOUT) FROM(INSTRUC);
END;
Correct Answer: D Vote an answer
Given the following code whatwill be output, if an,thing?
DCLX FIXED DEC(5,2) INIT (-123.45);
DCL S CHAR (7);
PUT STRING (S) EDIT(X) (A(7));
PUT DATA (5);
Correct Answer: C Vote an answer
Explanation: Only visible for FreeCram members. You can sign-up / login (it's free).
In which of the following cases is a performance analyzer tool NOT useful?
Correct Answer: C Vote an answer
What happens to AUTOMATIC variables when a procedure is called recursively?
Correct Answer: C Vote an answer
0
0
0
10