Exam1pass
Easiest way to pass IT exams
Exam1pass Help You Pass Any IT Exam
http://www.exam1pass.com
Exam
:
IBM 000-042
Title
: Developing with IBM
Enterprise PL/I
Version : V5.42
Exam1pass
Easiest way to pass IT exams
Exam1pass Help You Pass Any IT Exam
http://www.exam1pass.com
1. The XMLCHAR builtin function provides the ability to do which of the following?
A. Check XML for well-formedness
B. Check XML for validity
C. Create an XML buffer from a structure
D. Read an XML file into a structure
Answer: C
2. Which of the following is a typical deadlock situation?
Situation 1:
Transaction A waiting for resource_2 and Transaction B waiting for resource_1 while resource_1 is held by
Transaction C and resource_2 is held by Transaction B
Situation 2:
Transaction A waiting for resource_1 and Transaction B waiting for resource_2 while resource_1 is held by
Transaction B and resource_2 is held by Transaction C
Situation 3:
Transaction A Waiting for resource_2, Transaction B waiting for resource_3, Transaction C waiting for
resource_1, while resource_1, resource_2 and resource_3 are held by Transactions A, B and C
respectively.
Situation 4:
Transaction B waiting for resource_1 and Transaction C waiting for resource_2 while resource_1 is held by
Transaction C and resource_2 is held by Transaction A
A. Situation 1
B. Situation 2
C. Situation 3
D. Situation 4
Answer: C
3. Requirement:
If the value of the numeric variable I is 1 it needs to be changed to 2 and vice versa.
In all other cases it
must remain unchanged.
Which of the following solutions meets the requirement and does not require essential structural
modifications when the requirement is changed to the following:
If the value of the numeric variable I is 512 it needs to be changed to 731 and if the value is 814 it needs to
be changed to 5.
In all other cases it must be set to 111.
A. IF I = 1 ! I = 2
THEN I = 3 - I;
B. DCL ONETWO(2) BIN FIXED(15) INIT(2,1);
Exam1pass
Easiest way to pass IT exams
Exam1pass Help You Pass Any IT Exam
http://www.exam1pass.com
IF I = 1 !