• United States-English
  • Sign in or Sign up Contact About Us Site Map
Test4pass
Bookmark and Share
  • Home
  • All Vendors
  • Guarantee
  • Affiliate
  • News
  • Buying Process
  • Member Center
  • Shopping Cart
Home > IBM > IBM certifications I > 000-268

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
checkout
000-268

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

Related 000-268 Exams

000-104
000-977
000-103
000-105
000-032
000-377
000-009
000-974
000-995
000-978
000-280
000-417
000-842
000-431
000-015
000-973
000-669
000-108
000-115
000-037

Other IBM Exams

000-540
000-M16
000-035
000-342
000-169
LOT-847
000-695
LOT-981
000-567
000-372
000-389
000-153
000-010
000-184
000-150
000-S02
LOT-402
000-M86
COG-321
000-379
 

My Shopping Cart

MB6-871
$ 99.00 x 1
remove
 

Most Popular Vendor

  • Oracle
  • SUN
  • Symantec
  • Microsoft
  • IBM
  • Cisco
  • HP
  • CompTIA
  • Apple
  • Citrix
  • EMC
  • Nortel
  • CIW
  • Juniper Networks
  • CA
  • EC-COUNCIL
  • Genesys
  • H3C
  • CheckPoint
  • Network General
  • All Products >>

Popular Exams

  • HP2-Z18
  • HP2-K09
  • HP2-E53
  • HP2-E47
  • HP2-E45
  • HP2-H08
  • HP2-E53
  • HP2-E35
  • HP2-E45
  • 642-647
  • 642-813
  • 642-661
  • 650-369
  • 646-364
  • 642-983
  • 642-832
  • 642-975
  • 642-770
  • 642-637
  • 642-467
  • 640-553
  • 640-461
  • 642-188
  • 650-256
  • 642-447
  • 642-736
  • 640-816
  • 650-196
  • 642-994
  • 642-993
  • 642-991
  • 642-883
  • 642-887
  • 642-889
  • 642-874
  • 642-747
  • 642-617

New release exams

  • 642-742
  • 642-618
  • 642-437
  • 642-457
  • 642-165
  • 642-263
  • 640-864
  • 640-875
  • 642-902
  • 350-001
  • 640-722
  • 351-080
  • 350-030
  • 642-992
  • 642-979
  • 640-822
  • 642-732
  • 640-554
  • 350-018
  • 640-461
  • 640-760
  • 640-875
  • 640-878
  • SY0-301
  • E20-538
  • HP0-S25
  • EX0-117
  • 000-957
  • 220-702
  • VCP-510
  • 220-701
  • 1Z0-528
  • 1Y0-A26
  • N10-005

Hot Exams

  • 70-642
  • 70-640
  • 70-519
  • 70-516
  • 70-515
  • 70-293
  • 70-236
  • 70-243
  • 70-452
  • MB3-859
  • 70-579
  • 70-573
  • 70-523
  • 70-518
  • 70-433
  • 70-299
  • 70-298
  • 70-294
  • 70-291
  • 70-290
  • 70-237
  • 70-178
  • 70-177
  • 70-169
  • MB7-839
  • MB7-843
  • MB6-869
  • MB5-858
  • MB6-872
  • MB2-868
  • 70-669
  • 70-246
  • MB7-838
  • MB7-840
  • MB7-841
  • MB7-842
  • MB7-846
  • MB7-848
  • MB7-849

IBM Exams

  • 000-957
  • 000-221
  • 000-955
  • 000-152
  • 000-109
  • 000-034
  • 000-087
  • 000-107
  • 000-118
  • 000-119
  • 000-280
  • 000-374
  • 000-377
  • 000-538
  • 000-539
  • 000-541
  • 000-649
  • 000-966
  • 000-968
  • 000-977
  • 000-979
  • 000-670
  • 000-332
  • COG-701
  • COG-702
  • 000-821
  • 000-823
  • 000-822
  • 000-591
  • 000-271
  • 000-780
  • 000-781
  • 000-080
  • 000-089
  • COG-703
  • 000-586
  • 000-587
  • 000-219
  • 000-220


Guarantee | Buying Process | F.A.Q. | Payment | Refundment Term | Semples | Testing Engine | privacy | Contact | Sitemap 1 2 3 4

Copyright©2006-2009 sale test4pass Limited. All Rights Reserved

sale test4pass materials do not contain actual questions and answers from Microsoft's Cisco's Certification Exams.