3つの異なるバージョンが利用可能
ゲストがさまざまな方法で勉強できるように、ゲストのニーズを満たすために3つの異なるバージョンを用意しました。一番目のバージョンは000-972 ILE RPG Programmer テスト問題集で、このバージョンは読書に便利で、ダウンロードして紙に印刷することができます。これはユーザーが好みの方法を選択するためには非常に柔軟です。000-972問題集参考書の二番目のバージョンはソフトウエアで、本当テストの環境を模擬するから、本当のテストを受ける前に000-972 ILE RPG Programmer 試験問題集を体験して緊張を大いに解消できます。コンピュータで000-972最新問題集を練習し、本当のテストの流れを予めに体験するのは有効です。三番目のものはオンラインバージョンで、オンラインバージョンはあらゆる種類のデジタルエンドをサポートしており、オンラインとオフラインの両方で使用できるので、000-972オンライン練習問題の学習手配は柔軟性があります。
我々の製品000-972 ILE RPG Programmer テスト問題集について、あなたがいくつかのポイントを予め知っておく必要があります。これは三つと結論づけることができます。最初のものは安く、2番目のものは便利で、3番目は快適です。 私たちの000-972問題集参考資料では、あなたはより簡単で楽しい方法で素晴らしいものを確実に実現しようとしています。
特恵活動の行い
一般的に言えば、我々は不定期にいくつかのディスカウントを行いますので、我々の製品000-972テスト質問に注意を払って、あなたは少ないコストでより良いチャンスをキャッチすることができます。次に、あなたは我々の製品000-972 ILE RPG Programmer テスト問題集を購入して弊社の常連客になると、一年の000-972実際テスト質問の関連問題集を無料に楽しみます。そして、一年前に購入記録がある場合に、次回の試験準備のために000-972 ILE RPG Programmer 問題集参考書を購入したいなら、50%割引を与えます。ご覧のように、我々の000-972最新問題集資料は確かにあなたのお金を節約し、様々な方法で消費者としてのあなたの権利を保障します。
最高のサービス
我々のカスタマーサービスは1日中いつでもオンラインでご利用いただけますので、000-972問題集参考書に関する質問があれば、いつでも弊社の係員に連絡して問い合わせます。弊社の係員は000-972 ILE RPG Programmer テスト問題集の問題を処理するだけでなく、お客様と交流する方法を知っています。コンサルタントの助けを借りて安心してください。また、我々は000-972テスト質問の研究に取り組んでいる専業チームがあり、もし新しい情報や動向があれば、000-972 ILE RPG Programmer 問題集参考書をあなたに自動的に送ります。
IBM ILE RPG Programmer 認定 000-972 試験問題:
1. Given the following data definitions:
d MyDate S d DatFmt(*USA)
d charDate S 6a
/Free
The contents of the character field charDate must be placed in MyDate. Which of the following
code segments will correctly accomplish this task?
A) Test(DE) *YMD0 charDate;
If not %Error;
MyDate = %Date(charDate : *YMD0);
EndIf;
B) Test(E) *YMD charDate;
If not %Error;
MyDate = %Date(charDate : *YMD);
EndIf;
C) Test(E) *YMD0 charDate;
If not %Error;
MyDate = %Date(charDate : *USA);
EndIf;
D) Test(DE) *YMD charDate;
If not %Error;
MyDate = %Date(charDate : *USA);
EndIf;
2. An RPG program calls procedures named ValidateCust and GetCustInf which reside in a Service Program called CustProcs. The same program also calls a procedure named CenterField which resides in a Service Program called Utility. When creating this program, which of the following Binding Directory entries could be used to allow creation of the program with the CRTBNDRPG command?
A) OBJECT TYPE ValidateCust *MODULE GetCustInf *MODULE Centerfield *MODULE
B) OBJECT TYPE ProdProcs *SRVPGM CustProcs *SRVPGM Utility *SRVPGM DBIO *SRVPGM
C) OBJECT TYPE ValidateCust *PROCEDURE GetCustNo *PROCEDURE CustProcs *PROCEDURE
D) OBJECT TYPE ValidateCust *SRVPGM GetCustInf *SRVPGM Centerfield *SRVPGM
3. If the record format of the file MyFile changes, which of the following programs will display the message "There is a problem with MyFile" as opposed to the program failing with the run time message "Error message CPF4131 appeared during OPEN for file MYFILE"?
A) FMyFile IF E Disk InfSR(MyFileError)
/Free
Monitor;
Read MyFile;
On-Error *File;
ExSR MyFileError;
EndMon;
Return;
BegSR MyFileError;
Dsply 'There is a problem with MyFile';
Return;
EndSr;
B) FMyFile IF E Disk InfSR(MyFileError)
/Free
Read(E) MyFile;
If %error;
ExSR MyFileError;
EndIf;
Return;
C) FMyFile IF E Disk InfSR(MyFileError)
F UsrOpn
/Free
Open MyFile;
Read MyFile;
Return;
BegSR MyFileError;
Dsply 'There is a problem with MyFile';
Return;
EndSr;
D) FMyFile IF E Disk InfSR(MyFileError)
/Free
Read MyFile;
Return;
BegSR MyFileError;
Dsply 'There is a problem with MyFile';
Return;
EndSr;
4. Given the following code sample:
D count s 10u 0
/free
Dou %EOF(Account);
Read Account;
If Not %EOF(Account);
count += 1;
EndIf;
EndDo;
*InLR = *On;
Which of the following file specifications must be added to ensure that the program always
processes the member ACC01 in the file ACCOUNT01?
A) FFilename++IPEASF.....L.....
B) Device+.Keywords
FAccount IF E K DISK extfile(ACCOUNT01)
F extmbr(ACC01)
C) Device+.Keywords
FAccount IF E K DISK extfile('ACCOUNT01/ACC01')
D) Device+.Keywords
FAccount IF E K DISK extfile(ACCOUNT01 : ACC01)
E) FFilename++IPEASF.....L.....
F) FFilename++IPEASF.....L.....
G) FFilename++IPEASF.....L.....
H) Device+.Keywords
FAccount IF E K DISK extfile('ACCOUNT01')
F extmbr('ACC01')
5. Five existing programs are being converted for ILE. Two are to be bound into a service program and the other three are to be bound into a single program object, which uses the service program. After the appropriate coding changes, which of the following is the correct sequence of commands required to create the program?
A) CRTRPGMOD, CRTPGM, CRTSRVPGM
B) CRTSRVPGM, CRTPGM
C) CRTRPGMOD, CRTSRVPGM, CRTPGM
D) CRTSRVPGM, CRTBNDRPG
質問と回答:
| 質問 # 1 正解: A | 質問 # 2 正解: B | 質問 # 3 正解: C | 質問 # 4 正解: A、D | 質問 # 5 正解: C |




Kojima
緑川**
Nakajima
かで**
