000-972 Exam
ILE RPG Programmer
- Exam Number/Code : 000-972
- Exam Name : ILE RPG Programmer
- Questions and Answers : 70 Q&As
- Update Time: 2011-09-21
- Price:
$ 119.00$ 69.00
Free 000-972 Demo Download
Test4pass offers free demo for IBM certifications I 000-972 exam (ILE RPG Programmer). You can check out the interface, question quality and usability of our practice exams before you decide to buy it. We are the only one site can offer demo for almost all products.
Exam Description
It is well known that 000-972 exam test is the hot exam of IBM certification. Test4pass offer you all the Q&A of the 000-972 real test . It is the examination of the perfect combination and it will help you pass 000-972 exam at the first time!
Why choose Test4pass 000-972 braindumps
Quality and Value for the 000-972 Exam
100% Guarantee to Pass Your 000-972 Exam
Downloadable, Interactive 000-972 Testing engines
Verified Answers Researched by Industry Experts
Drag and Drop questions as experienced in the Actual Exams
Practice Test Questions accompanied by exhibits
Our Practice Test Questions are backed by our 100% MONEY BACK GUARANTEE.
IBM IBM certifications I 000-972 exam braindumps questions and answers
¡¡
Exam : IBM 000-972
Title : ILE RPG Programmer
1. Which of the following is an advantage gained by using a prototype and CALLP for a program call in place of CALL and PARM operations?
A. Ability to qualify the name of the program being called
B. Ability to have the compiler validate the parameters being passed
C. Ability to use a variable to contain the name of the program to be called
D. Ability to statically bind a program object to its caller for better performance
Answer: B
2. A service program comprised of 6 modules has a custom signature. A new procedure with the EXPORT keyword has been added to one of the module sources. This procedure is not yet referenced by any programs. Which of the following is the correct sequence of tasks required?
A. Recompile *MODULE, modify binder source, update *SRVPGM
B. Recompile *MODULE, modify binder source, update *SRVPGM, recreate dependent programs
C. Modify binder source, update *SRVPGM, recompile *MODULE, recreate *PGM objects bound to the *SRVPGM
D. Recompile *MODULE, update *SRVPGM, modify binder source, recreate *PGM objects bound to the *SRVPGM
Answer: A
3. The documentation for a system API lists the following parameters:
Move Spooled File (QSPMOVSP) API
Required Parameter Group:
1 Function information Input Char(*)
2 Length of function information Input Binary(4)
3 Function information format name Input Char(8)
4 Error code I/O Char(*)
Which is a valid prototype for the call of this API?
A. d QSPMOVSP pr extpgm('QSPMOVSP')
d FuncInfo 200
d InfoLeng 4b 0
d FormatName 8
d ErrorCode 80
B. d QSPMOVSP pr
d FuncInfo 200
d InfoLeng 10i 0
d FormatName 8
d ErrorCode 80
C. d MoveSPLF pr extproc('QSPMOVSP')
d FuncInfo 200
d InfoLeng 4b 0 const
d FormatName 8 const
d ErrorCode 80
D. d MoveSPLF pr extpgm('QSPMOVSP')
d FuncInfo 200
d InfoLeng 10i 0
d FormatName 8
d ErrorCode 80
Answer: D
4. Given the following H-spec:
h datedit(*mdy)
Which of the following conditions tests whether a job started prior to midnight and is still running after midnight?
A. if udate < %date();
B. if *date < %date();
C. if %date(udate:*mdy) < %date();
D. if %date(*date:*mdy) < %date();
Answer: C
5. What is the purpose for the following reserved words?
XML_START_ELEMENT
XML_COMMENT
XML_CHARS
XML_END_ELEMENT
A. Aids in parsing XML using the DOM (Document Object Model).
B. Indicates the type of data entity to create during XML generation.
C. Aids in interpreting the event parameter in an event handling procedure.
D. Indicates to the parser which events your handler should be notified of.
Answer: C
6. File CUSMS contains a field named CMCSNO. Which of the following file specification keywords will allow the program to recognize this field as CUSTCSNO?
A. PREFIX(CUST)
B. PREFIX(CUST:2)
C. RENAME(CM:CUST)
D. RENAME(CMCSNO:CUSTCSNO)
Answer: B
7. Given the following code sample:
D amount s 3 0 inz(900)
/free
monitor;
amount += 100;
on-error *program;
amount = *hival;
on-error *all;
amount = *hival;
monitor;
amount -= 100;
on-error *program;
amount = 0;
on-error *all;
amount = 100;
endmon;
endmon;
What is the value of AMOUNT upon completion?
A. 0
B. 999
C. 100
D. 899
Answer: B
8. Which of the following operation codes is supported in both fixed form and /Free form?
A. CALL
B. EVALR
C. ALLOC
D. EXTRCT
Answer: B
9. Given the following code sample:
d NotLate PR ExtPgm('LARRY')
d RqDta 32767a
d RqLen 10i 0
d RqTyp 10i 0
Which of the following is the correct code to call the program Larry?
A. call NotLate(RequestData : RequestLength : RequestType);
B. callb NotLate(RequestData : RequestLength : RequestType);
C. callp NotLate(RequestData : RequestLength : RequestType);
D. C CALL 'NOTLATE'
C PARM RequestData
C PARM RequestLength
C PARM RequestType
Answer: C
10. Given the following code sample:
DName+++++++++++ETDsFrom+++To/L+++IDc.Keywords+++++++++++++++++++++++++++++
d StartString s 50a inz('Fred, Barney, Wilma, Betty,')
d EndString s like(StartString)
d pos s 3i 0 inz
/free
dou pos >= 3;
pos += 1;
pos = %Scan(',' : StartString : pos);
enddo;
pos += 1;
EndString = %replace(' Dino,' : StartString : pos : 0);
Upon completion, what is the value of EndString?
A. Fred, Dino,
B. Dino, Barney, Wilma, Betty,
C. Fred, Barney, Wilma, Betty,
D. Fred, Dino, Barney, Wilma, Betty,
Answer: D
11. Given the following code sample:
DName+++++++++++ETDsFrom+++To/L+++IDc.Keywords+++++++++++++++++++++++
D ElementsAllocateDS...
D S 10i 0
Which of the following best describes ElementsAllocateDS?
A. A syntax error
B. A long field name
C. A data structure
D. A qualified field name
Answer: B
12. Given the following code sample, what value is displayed?
D MyDS DS
D FieldA 5A Inz('XXXXX')
/free
FieldA = 'VWXYZ';
Reset FieldA;
Dsply ('FieldA=' + FieldA);
*INLR = *On;
BegSR *InzSR;
FieldA = 'ABCDE';
EndSR;
A. FieldA=
B. FieldA=VWXYZ
C. FieldA=ABCDE
D. FieldA=XXXXX
Answer: C
13. Given the following code sample:
DName+++++++++++ETDsFrom+++To/L+++IDc.Keywords++++++++++++++++++++++
d CustPrice pr 9 3
d Company 3 0 const
d Item 20
d Contract 10 options(*omit)
d Quantity 7 0 options(*nopass)
d MyPrice s 9 3
d MyCompany s 3 0
d MyItem s 20
d MyContract s 10
d MyQty s 7 0
Which of the following is a valid expression?
A. MyPrice = CustPrice(1 : MyItem : *omit);
B. MyPrice = CustPrice(1 : MyItem : : MyQty);
C. MyPrice = CustPrice(MyCompany : MyItem : *omit : *nopass);
D. MyPrice = CustPrice(MyCompany : MyItem : MyContract : *omit);
Answer: A
14. Which of the following SQL statements, when used by itself in an RPG program, can take the place of a File Specification, a key and a CHAIN?
A. FETCH
B. SELECT INTO
C. DECLARE CURSOR
D. PREPARE STATEMENT
Answer: B
Click Online chat to talk with us , get more informations about IBM IBM certifications I 000-972 practice exam study guides questions and answers
Test4pass 000-972 Exam Features
Quality and Value for the 000-972 Exam
Test4pass Practice Exams for IBM 000-972 are written to the highest standards of technical accuracy, using only certified subject matter experts and published authors for development.
100% Guarantee to Pass Your 000-972 Exam
If you prepare for the exam using our Test4pass testing engine, we guarantee your success in the first attempt. If you do not pass the IBM certifications I 000-972 exam (ProCurve Secure WAN) on your first attempt we will give you a FULL REFUND of your purchasing fee AND send you another same value product for free.
IBM 000-972 Downloadable, Printable Exams (in PDF format)
Our Exam 000-972 Preparation Material provides you everything you will need to take your 000-972 Exam. The 000-972 Exam details are researched and produced by Professional Certification Experts who are constantly using industry experience to produce precise, and logical. You may get questions from different web sites or books, but logic is the key. Our Product will help you not only pass in the first try, but also save your valuable time.
000-972 Downloadable, Interactive Testing engines
We are all well aware that a major problem in the IT industry is that there is a lack of quality study materials. Our Exam Preparation Material provides you everything you will need to take a certification examination. Like actual certification exams, our Practice Tests are in multiple-choice (MCQs) Our IBM 000-972 Exam will provide you with free 000-972 dumps questions with verified answers that reflect the actual exam. These questions and answers provide you with the experience of taking the actual test. High quality and Value for the 000-972 Exam:100% Guarantee to Pass Your IBM certifications I exam and get your IBM certifications I Certification.
Test4pass 000-972 examTest4pass 000-972 pdf exam
Test4pass 000-972 braindumps
Test4pass 000-972 study guides
Test4pass 000-972 trainning materials
Test4pass 000-972 simulations
Test4pass 000-972 testing engine
Test4pass 000-972 vce
Test4pass 000-972 torrent
Test4pass 000-972 dumps
free download 000-972
Test4pass 000-972 practice exam
Test4pass 000-972 preparation files
Test4pass 000-972 questions
Test4pass 000-972 answers
http://www.test4pass.com/000-972-exam.html The safer.easier way to get IBM certifications I Certification
.




