재응시 비용을 생각하면 첫 응시에서의 철저한 준비가 무엇보다 중요합니다. PassTIP의 000-972 모의고사 70문항으로 IBM ILE RPG Programmer 시험을 미리 경험해 보시기 바랍니다.
IBM 000-972 시험 개요:
| 인증 벤더: | IBM |
|---|---|
| 시험명: | ILE RPG Programmer |
| 시험 번호: | 000-972 |
| 지원 언어: | English |
| 관련 자격증: | IBM Certified Developer – IBM i 7.x IBM RPG/ILE Programming Certifications |
| 샘플 문제: | DOWNLOAD DEMO |
| 응시 방법: | 폐지/철회됨; 더 이상 공식 시험으로 제공되지 않음 |
| 전제 조건: | RPG 프로그래밍 경험(예: 3~5년) 및 ILE 권장 |
IBM 000-972 시험 요강 주제:
| 섹션 | 목표 |
|---|---|
| 주제 1: 파일 및 데이터 처리 | -
|
| 주제 2: 프로그래밍 기법 | -
|
| 주제 3: ILE RPG 기초 | -
|
000-972 시험, 수험생이 가장 많이 묻는 질문
000-972는 IBM이 주관하는 공인 인증시험으로, 이 시험을 통과하시면 IBM certifications II 자격을 취득하게 됩니다. 해당 인증의 등급은 전문가입니다. IBM Certified Developer – IBM i 7.x,IBM RPG/ILE Programming Certifications 등 관련 인증과 함께 준비하시면 전문성을 더욱 넓히실 수 있습니다. PassTIP에서는 이 시험을 대비하기 위한 70문항의 연습문제를 제공하고 있습니다.
000-972 시험의 응시 조건은 다음과 같이 안내되어 있습니다. RPG 프로그래밍 경험(예: 3~5년) 및 ILE 권장 응시 조건은 주최 측 정책에 따라 달라질 수 있으므로 접수 전에 공식 안내 페이지에서 최신 내용을 꼭 확인하시기 바랍니다.
있습니다. PassTIP은 000-972 무료 샘플 문제를 제공하고 있어 실제 제품의 구성과 품질을 구매 전에 직접 살펴보실 수 있습니다. 제품을 구매하시면 365일 동안 무료 업데이트가 적용되며, 무료 기간이 끝난 이후에는 50% 할인된 가격으로 업데이트를 연장하실 수 있습니다.
PassTIP은 환불 보장 정책을 운영하고 있습니다. 구매일로부터 60일 이내에 000-972 시험에 응시하여 불합격하신 경우 전액 환불을 신청하실 수 있으며, 응시 등록 확인서 사본과 공식 성적표(Score Report) PDF를 시험일로부터 2일 이내에 제출하시면 7일 이내에 처리됩니다. 구매 후 3일 이내 응시, 다운로드 후 미응시, 무료 자료와 만료된 주문은 대상에서 제외되며 수험자와 결제자의 명의가 동일해야 합니다. 환불 대신 동일한 가치의 다른 시험 자료 2개를 무료로 받으면서 기존 제품의 업데이트 서비스를 그대로 유지하는 선택도 가능합니다. 자료 전달은 결제 직후 이루어지며 결제 후 1분 이내에 이메일로 발송됩니다. 2시간이 지나도 도착하지 않으면 고객센터로 문의해 주시기 바랍니다. 설치 가능한 컴퓨터 대수에는 제한이 없습니다.
000-972 시험의 출제 범위는 모두 3개 영역으로 나뉘어 있습니다. 대표적으로 ILE RPG 기초,파일 및 데이터 처리,프로그래밍 기법 영역이 출제되며, 각 영역의 세부 항목과 전체 배점 구성은 위에 안내된 시험 범위 전문에서 확인하시기 바랍니다.
최신 IBM certifications II 000-972 무료샘플문제
문제 #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 have the compiler validate the parameters being passed
B. Ability to use a variable to contain the name of the program to be called
C. Ability to qualify the name of the program being called
D. Ability to statically bind a program object to its caller for better performance
문제 #2
Which of the following provides the equivalent of a compile listing for use in interactive debugging?
A. SpecifyOPTIONS(*DBGVIEW) on the CRTBNDRPG or CRTRPGMOD command.
B. Include theDBGVIEW(*LIST) keyword on the H Spec.
C. SpecifyDBGVIEW(*LIST) on the CRTBNDRPG or CRTRPGMOD command.
D. SpecifyDBGVIEW(*LIST *COPY) on the CRTBNDRPG or CRTRPGMOD command.
문제 #3
When creating a multiple module program which of the following statements is true?
A. The module to be invoked must be specified on the CALL command.
B. Multiple modules must be bound into a *SRVPGM object.
C. Modules being bound into a *PGM or *SRVPGM object require H-spec keyword NOMAIN.
D. The procedure names that are exported from the modules do not have to be unique.
문제 #4
In the example below, the elements of the Sales array are added to the TotalSales variable. Which
of the statements below can be used to replace the "For" loop?
FSalesFile IF E K Disk
DName+++++++++++ETDsFrom+++To/L+++IDc.Keywords+++++++++++++++++++
D SalesArr S 8S 2 DIM(12)
D TotalSales S 9S 2
D Mon S 2S 0
/Free
// Accumulate total sales for year
For Mon = 1 to 12;
TotalSales += SalesArr(Mon);
EndFor;
*inlr = *on;
/End-free
A. TotalSales = %elem(SalesArr);
B. TotalSales = %xfoot(SalesArr);
C. TotalSales = %sumArr(SalesArr);
D. TotalSales = %sum(SalesArr);
문제 #5
Given the following code sample:
d address s 30 inz('3207 North Henderson Parkway') d addressChars s 1 dim(30)
c movea address addressChars
c move *blanks address
Which of the following would produce identical results?
A. d address s 30inz('3207 North Henderson Parkway')
d addressChars s 1 dim(30) overlay(address)
/free %SubArr(addressChars : 1 : 30) = address;
address = *blanks;
B. daddressarray ds
d address 30 inz('3207 North Henderson Parkway') d addressChars 1 dim(30) overlay(address)
/free addressChars = address;
address = *blanks;
C. d address s 30inz('3207 North Henderson Parkway') d addressarray ds
d addressChars 1 dim(30)
/free addressarray = address;
address = *blanks;
D. d address s 30inz('3207 North Henderson Parkway') d addressChars s 1 dim(30)
/free addressChars = address;
address = *blanks;
질문과 대답:
| 문제 #1 정답: A | 문제 #2 정답: C | 문제 #3 정답: D | 문제 #4 정답: B | 문제 #5 정답: C |

1113 고객 리뷰
저희 제품에 신심을 갖고 시험에 도전해보세요.







wj1982 -
000-972시험은 합격했는데 PassTIP덤프만 있으면 누구나
합격할수 있지 않을가 싶어 뭔가 허전한 마음도 없지않아 있습니다.
물론 자격증을 위한 공부였지만 다음 자격증은 덤프를 공부한다해도
한문제한문제 해석해가면서 공부할려고 합니다.