000-268 Exam
rpg iv with ile
- Exam Number/Code : 000-268
- Exam Name : rpg iv with ile
- Questions and Answers : 92 Q&As
- Update Time: 2013-04-05
-
Price:
$ 119.00$ 69.00 -
000-268 Hard Copy (PDF)
-
000-268 Test Engine
Free 000-268 Demo Download
Test4pass offers free demo for IBM certifications I 000-268 exam (rpg iv with ile). 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-268 exam test is the hot exam of IBM certification. Test4pass offer you all the Q&A of the 000-268 real test . It is the examination of the perfect combination and it will help you pass 000-268 exam at the first time!
Why choose Test4pass 000-268 braindumps
Quality and Value for the 000-268 Exam
100% Guarantee to Pass Your 000-268 Exam
Downloadable, Interactive 000-268 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.
Test4pass 000-268 Exam Features
Quality and Value for the 000-268 Exam
Test4pass Practice Exams for IBM 000-268 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-268 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-268 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-268 Downloadable, Printable Exams (in PDF format)
Our Exam 000-268 Preparation Material provides you everything you will need to take your 000-268 Exam. The 000-268 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-268 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-268 Exam will provide you with free 000-268 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-268 Exam:100% Guarantee to Pass Your IBM certifications I exam and get your IBM certifications I Certification.
Hot KeyWords On 000-268 test
We collect some hot keywords about this exam:
Test4pass , Pass 4 Sure , Test in Side ,Pass Guide ,Test King 000-268 exam | 000-268 pdf exam | 000-268 braindumps | 000-268 study guides | 000-268 trainning materials | 000-268 simulations | 000-268 testing engine | 000-268 vce | 000-268 torrent | 000-268 dumps | free download 000-268 | 000-268 practice exam | 000-268 preparation files | 000-268 questions | 000-268 answers.
How to pass your 000-268 exam
You can search on Search Engine and Find Best IT Certification site: Test4pass.com - Find the Method to succeed 000-268 test,The safer.easier way to get IBM certifications I Certification .
��
Exam : IBM 000-268
Title : rpg iv with ile
1. Given the following code segment:
After this code runs, what is the value of Result?
A. ' OBJA '
B. '*libl PGMA '
C. 'QGPL OBJA '
D. 'QGPL PGMA '
Answer: B
2. In the following code sample, file CUSSALES contains a record format CUSSALESR, with unique key fields CSCONO, CSCSNO and CSYEAR.
Assuming the READE operation is successful, which record is retrieved?
A. The first record with a company greater than 3
B. The first record for company 3, with a customer greater than 100
C. The first record for company 3, customer 100
D. The first record for company 3, customer 100 with a year greater than 2003
Answer: D
3. Given the following code segment:
CL0N01Factor1+++++++Opcode(E)+Factor2+++++++Result++++++++Len++D+HiLoEq
C CODE CASEQ 1 SRONE
C CODE CASEQ 2 SRTWO
C CAS SRTHREE
C END
Which of the following code segments will perform the equivalent function?
A. /FREE Select CODE; WHEN = 1; ExSr SRONE; WHEN = 2; ExSr SRTWO; Other; ExSr SRTHREE; EndSl; /END-FREE
B. /FREE Select; WHEN CODE = 1; ExSr SRONE; WHEN CODE = 2; ExSr SRTWO; Other; ExSr SRTHREE; EndSl; /END-FREE
C. /FREE Select CODE; 1; ExSr SRONE; 2; ExSr SRTWO; Other; ExSr SRTHREE; EndSl; /END-FREE
D. /FREE Select WHEN CODE; Other; ExSr SRTHREE; EndSl; /END-FREE
E. /FREE Select WHEN CODE; 1; EndSl; /END-FREE
F. /FREE Select WHEN CODE; 1; ExSr SRONE; /END-FREE
G. /FREE Select WHEN CODE; 1; ExSr SRONE; 2;
H. /FREE Select WHEN CODE; 1; ExSr SRONE; 2; ExSr SRTWO;
I. /FREE Select WHEN CODE; 1; ExSr SRONE; 2; ExSr SRTWO; Other; Select WHEN CODE; 1; ExSr SRONE; 2; ExSr SRTWO; Other; ExSr SRTHREE; EndSl; 1; ExSr SRONE; 2; ExSr SRTWO; Other; ExSr SRTHREE; EndSl; /END-FREE ExSr SRONE; 2; ExSr SRTWO; Other; ExSr SRTHREE; EndSl; /END-FREE 2; ExSr SRTWO; Other; ExSr SRTHREE; EndSl; /END-FREE
Answer: B
4. A program needs to concatenate the 3 numeric fields shown below such that Phone# contains a string in the format aaabbbcccc, where aaa is the AreaCode field, bbb is the PhPrefix field and cccc is the PhNbr field. All positions of Phone# must be filled with digits.
D AreaCode S 3 0
D PhPrefix S 3 0
D PhNbr S 4 0
D Phone# S 10A
Which of the following code segments would correctly accomplish this task in all circumstances?
A. EVAL Phone# = %Char(AreaCode) + %Char(PhPrefix) + %Char(PhNbr)
B. EVAL Phone# = %EditW(AreaCode: '0') + %EditW(PhPrefix: '0') + %EditW(PhNbr: '0')
C. EVAL Phone# = %EditC(AreaCode: 'X') + %EditC(PhPrefix: 'X') + %EditC(PhNbr: 'X')
D. EVAL Phone# = %Char(AreaCode: '0') + %Char(PhPrefix: '0') + %Char(PhNbr: '0')
Answer: C
5. Given the following expression:
SoldAmt + Dividends
TotalReturnPct = ( ---------------------- - 1 ) * 100
PaidAmt + Commissions
Which /free form expression below is correct?
A. /free TotalReturnPct = ((SoldAmt + Dividends) / (PaidAmt + Commissions) - 1) * 100; /end-free
B. /free TotalReturnPct = (SoldAmt + Dividends) / (PaidAmt + Commissions) - 1 * 100; /end-free
C. /free TotalReturnPct = (SoldAmt + Dividends / PaidAmt + Commissions - 1) * 100; /end-free
D. /free TotalReturnPct = ((SoldAmt + Dividends) / PaidAmt + Commissions - 1) * 100; /end-free
Answer: A
6. Given the following code segment:
0001.00 D DateField S D DATFMT(*ISO)
0002.00 D CharField S 6A INZ('040696')
0003.00 C *MDY MOVE CharField DateField
This code will not compile. Which of the following changes will allow a successful compile?
A. Change line 0001.00 to: D DateField S D DATFMT(*MDY)
B. Change line 0003.00 to: C *MDY0 MOVE CharField DateField
C. Change line 0003.00 to: C *MDY MOVE(D) CharField DateField
D. Change line 0003.00 to: C *ISO MOVE CharField DateField
Answer: B
7. Given the following code segment:
AAN01N02 N03T.Name++++++RLen++TDpBLinPosFunctions++++++++++++++++
A R D1SF SFL
A OPTNBR 1A B 10 3
A SCNDTA 50A O 10 7
A R D1SC SFLCTL(D1SF)
A 79 SFLDSP
A 81 SFLDSPCTL
A SFLSIZ(1000)
A SFLPAG(0011)
A 9 2'Opt Data
What DDS keyword needs to be added to this code segment to remove all of the records from the subfile?
A. SFLCLR
B. SFLDLT
C. SFLRMV
D. SFLINZ
Answer: A
8. Given the following field definitions, if field mmddyy contains a date in MDY format, what is the correct syntax to populate DateFld with the content of mmddyy?
D mmddyy S 6A
D DateFld S D Inz(D'2003-06-27') DatFmt(*ISO)
A. DateFld = %Date(mmddyy: *MDY);
B. DateFld = %Date(mmddyy: *MDY0);
C. DateFld = %Date(mmddyy: *ISO);
D. DateFld = %Date(mmddyy: *ISO0);
Answer: B
9. Given the following DDS for Physical file CATFILE:
A R CATREC
A CATCOD 5S 0
A CATDES 20A
And the following code for Pgm1:
FCatFile UF A E K DISK
D CategoryRec E DS ExtName(CatFile)
C Read(E) Emp
And the following code for Pgm2:
FCatFile UF A E K DISK
C Read(E) Emp
What are the attributes of the CatCod field in both programs?
A. Packed Decimal 5,0 in both programs
B. Signed Numeric 5,0 in both programs
C. Packed Decimal 5,0 in Pgm1; Signed Numeric 5,0 in Pgm2
D. Signed Numeric 5,0 in Pgm1; Packed Decimal 5,0 in Pgm2
Answer: D
10. Review the following sample subfile:
+----------------------+
| Option Data |
| ------ --------- |
| | | Record 1 |
| | | Record 2 |
| |X| Record 3 |
| | | Record 4 |
+----------------------+
The SFLNXTCHG keyword was inactive when Record 1 was written and active when each subsequent subfile record was written. The operator has entered the "X" in the option field for Record 3. Which subfile record will be read when the next READC operation is performed on the subfile?
A. 1
B. 2
C. 3
D. 4
Answer: B
11. An RPG source member containing subprocedures, will be compiled using the CRTBNDRPG command. What value must be specified for the Default Activation Group parameter?
A. DFTACTGRP(*NO)
B. DFTACTGRP(*YES)
C. DFTACTGRP(QILE)
D. DFTACTGRP(*NONE)
Answer: A
12. Given the following code segment: DName+++++++++++ETDsFrom+++To/L+++IDc.Keywords++++++++++++
D GetBalDue PR
D Balance 11P 2
D CustNo 5S 0
D Qty 7P 0
D Amount 5P 2
D Balance S 11P 2
D CustNo S 5S 0
D OrdQty S 7P 0
D Amt S 5P 2
Which of the following contains correct syntax?
A. C Eval Balance = GetBalDue(CustNo : OrdQty : C Amt)
B. C CallP GetBalDue (Balance: CustNo : OrdQty : C Amt)
C. C CallB 'GetBalDue' C Parm Balance C Parm CustNo C Parm OrdQty C Parm Amt
D. C CallP 'GetBalDue' C Parm Balance C Parm CustNo C Parm OrdQty C Parm Amt
Answer: B
13. Procedure PROC1 in a Service Program must be called passing to it a 5 position field. Which of the following code segments will accomplish this task?
A. D AField S 5A C CallPrc 'PROC1' C Parm AField
B. D AField S 5A C Call 'PROC1' C Parm AField
C. D Proc1 PR D MyField 5A D AField S 5A C CallP Proc1(AField)
D. D Proc1 PR ExtPgm('PROC1') D MyField 5A D AField S 5A C CallP Proc1(MyField)
Answer: C
14. Given the following code segment:
d CusInfo ds dim(10) qualified
d CusNum 5 0
d AmtDue 7 2
d OrdYTD 7 2
d OrdPrv 7 2
How would the AmtDue subfield for the 5th element of the CusInfo array be referenced?
A. AmtDue(5)
B. CusInfo(5).AmtDue
C. CusInfo.AmtDue(5)
D. CusInfo(5).AmtDue(5)
Answer: B