Worldwide:

000-268, IBM IBM certifications I 000-268 Exam

Home >> IBM >> IBM certifications I >> 000-268

000-268 Exam

IBM 000-268 exam
  • Questions and Answers
  • 92 Q&As
  • Update time
  • March 12th,2010
  • Software Price
  • $145 $100

loading loading

Product Description

Exam Number/Code: 000-268

Exam name: rpg iv with ile

000-268 test is the important of IBM certifaction. Only you pass the 000-268 exam you could have the chance to get IBM certifaction. To help examinee, Exambible publish the Questions and Answers about 000-268 exam. And the 92 simulation exam are all designed by expert from Exambible. Examinees could have an enough prepare by these simulation exercises and pass the 000-268 test successfully.
Exambible also provide free 000-268 Demo, examinees can download and use before buying 000-268 Q&As, then decide if they need to purchase.

More IBM IBM certifications I Resources

Recommended IBM exams

  • IBM 000-233 exam: aix installation,backup and system rec0ver
  • IBM 000-341 exam: WebSphere Application Server V5.0, Multiplatform Administration
  • IBM 000-M12 exam: IBM Workplace Content Mgmt Technical Sales Mastery Test v1
  • IBM 000-486 exam: test 486 object-oriented analysis and design with uml test
  • IBM 000-737 exam: DB2 9 System Administrator for z/OS Exam
  • IBM 000-965 exam: XIV Storage System Technical Solutions Version 1
  • IBM 000-023 exam: IBM Tivoli Support Provider Tools and Processes
  • IBM LOT-955 exam: IBM WebSphere Portal 6.1 Deployment and Administration
  • IBM 000-922 exam: IBM Tivoli Netcool/Webtop v2.0
  • IBM 000-667 exam: IBM Test 667, Architectural Design of SOA Solutions
  • IBM 000-062 exam: IBM System p5 Virtualization Technical Support
  • IBM 000-330 exam: Power Systems Technical Support for AIX and Linux

IBM IBM certifications I 000-268 Web Demo

This webdemo is just a demo data, only for reference and learning, there is no other purposes.

1. 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


2.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

3. 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

4. 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

5. 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

6. 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

7. 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

8. 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


Exambible materials do not contain actual questions and answers from Microsoft's Certification Exams.