高质量和高价值的 000-042 题库. 000-042 考题由我们的资深IT认证讲师和IBM Developing with IBM Enterprise PL/I產品專家精心打造,包括了当前最新的真实 000-042 考题,全部附有正确答案.IBM Developing with IBM Enterprise PL/I认证作为全球IT领域专家热门认证之一,是许多大中IT企业选择人才标准的必备条件。如果你正在准备000-042考试,为IBM Developing with IBM Enterprise PL/I认证做最后冲刺,又苦于没有绝对权威的全真考题,希望我们能助您完成心愿。000-042由在欧/美/亚洲各大IT公司和培训中心任职资深IT工程师和IT认证专家组成,秉承"轻松通过专业有效"的原则,推出更好的IT认证资料。  100%通过000-042认证考试 Killtest 实行“一次不过全额退款”承诺。如果您购买了000-042考题,只要不是首次通过,凭盖有PROMETRIC或VUE考试中心钢印的考试成绩单,100%退还您购买 000-042 的全部费用,绝对保证您的利益不受到任何的损失. 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 Correct: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 Correct: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); IF I = 1 ! I = 2 THEN I = ONETWO(I); C.SELECT (I); WHEN(1) I = 2; WHEN(2) I = 1; OTHER; END; D.IF I = 1 THEN I = 2; IF I = 2 THEN I = 1; Correct:C 4.Which of the following is LEAST likely to be performed by an online application? A.Checkpoint/restart logic B.Transaction processing C.End user interaction D.Sorting Correct:A 5.Which of the following PL/I features is NOT new with Enterprise PL/I? A.VALUE attribute for named constants. B.UNIONs or CELLs to assign identical storage to different variables. C.Writing numeric constants with the underscore sign as a separator. D.Using hexadecimal constants. Correct:D |