처음 도전하는 1z1-151 시험이라면 무엇부터 시작해야 할지 막막하실 수 있습니다. PassTIP의 Oracle Fusion Middleware 11g: Build Applications with Oracle Forms 모의고사 90문항으로 학습 방향을 잡아 보시기 바랍니다.
Oracle 1z1-151 시험 개요:
| 인증 벤더: | Oracle |
|---|---|
| 시험명: | Oracle Fusion Middleware 11g: Build Applications with Oracle Forms |
| 시험 번호: | 1Z0-151 |
| 실제 시험 문항 수: | 90 |
| 지원 언어: | English |
| 시험 형식: | Multiple Choice |
| 관련 자격증: | Oracle Fusion Middleware 11g |
| 샘플 문제: | DOWNLOAD DEMO |
| 응시 방법: | Pearson VUE 시험 센터 또는 Oracle 공인 제공 기관 (과거 기준이며, 현재 이 시험은 은퇴되었습니다). |
| 전제 조건: | 공식적인 필수 선수 시험은 없으나, Oracle Forms 및 SQL/PLSQL 경험이 권장됩니다. |
| 공식 요강 URL: | https://education.oracle.com/ |
Oracle 1z1-151 시험 요강 주제:
| 섹션 | 목표 |
|---|---|
| 재사용 가능한 구성 요소 및 통합 | - 애플리케이션 모듈화
|
| 트리거 및 프로그램 단위 | - 애플리케이션 로직 구현
|
| 데이터 블록 및 항목 작업 | - 데이터 블록 및 항목 생성 및 관리
|
| 데이터베이스 상호작용 | - 데이터 처리 및 조작
|
| 탐색 및 사용자 인터페이스 | - 사용자 상호작용 설계
|
| 배포 및 런타임 | - Oracle Forms 애플리케이션 배포
|
| Oracle Forms 애플리케이션 개발 | - Oracle Forms 아키텍처 및 개발 환경
|
Oracle Fusion Middleware 11g: Build Applications with Oracle Forms 관련 궁금증을 해결해 드립니다
1z1-151는 Oracle이 주관하는 공인 인증시험으로, 이 시험을 통과하시면 11g 자격을 취득하게 됩니다. 해당 인증의 등급은 Professional입니다. Oracle Fusion Middleware 11g 등 관련 인증과 함께 준비하시면 전문성을 더욱 넓히실 수 있습니다. PassTIP에서는 이 시험을 대비하기 위한 90문항의 연습문제를 제공하고 있습니다.
1z1-151 시험의 응시 조건은 다음과 같이 안내되어 있습니다. 공식적인 필수 선수 시험은 없으나, Oracle Forms 및 SQL/PLSQL 경험이 권장됩니다. 응시 조건은 주최 측 정책에 따라 달라질 수 있으므로 접수 전에 공식 안내 페이지에서 최신 내용을 꼭 확인하시기 바랍니다.
있습니다. PassTIP은 1z1-151 무료 샘플 문제를 제공하고 있어 실제 제품의 구성과 품질을 구매 전에 직접 살펴보실 수 있습니다. 제품을 구매하시면 365일 동안 무료 업데이트가 적용되며, 무료 기간이 끝난 이후에는 50% 할인된 가격으로 업데이트를 연장하실 수 있습니다.
PassTIP은 환불 보장 정책을 운영하고 있습니다. 구매일로부터 60일 이내에 1z1-151 시험에 응시하여 불합격하신 경우 전액 환불을 신청하실 수 있으며, 응시 등록 확인서 사본과 공식 성적표(Score Report) PDF를 시험일로부터 2일 이내에 제출하시면 7일 이내에 처리됩니다. 구매 후 3일 이내 응시, 다운로드 후 미응시, 무료 자료와 만료된 주문은 대상에서 제외되며 수험자와 결제자의 명의가 동일해야 합니다. 환불 대신 동일한 가치의 다른 시험 자료 2개를 무료로 받으면서 기존 제품의 업데이트 서비스를 그대로 유지하는 선택도 가능합니다. 자료 전달은 결제 직후 이루어지며 결제 후 1분 이내에 이메일로 발송됩니다. 2시간이 지나도 도착하지 않으면 고객센터로 문의해 주시기 바랍니다. 설치 가능한 컴퓨터 대수에는 제한이 없습니다.
1z1-151 시험의 출제 범위는 모두 7개 영역으로 나뉘어 있습니다. 대표적으로 배포 및 런타임,트리거 및 프로그램 단위,재사용 가능한 구성 요소 및 통합 영역이 출제되며, 각 영역의 세부 항목과 전체 배점 구성은 위에 안내된 시험 범위 전문에서 확인하시기 바랍니다.
최신 11g 1z1-151 무료샘플문제
문제 #1
Customers log in to your Orders application by using their customer ID, which is saved as a global variable. When the Orders form first comes up, you want it to be populated with the customer's orders, and you do not want customers to be able to query for another customer's orders.
You code the following triggers:
When-New Form instance on the Orders form:
GO_BLOCK('orders');
EXECUTE_QUERY;
You also have a button in the Control block labeled Query Orders with a When-Button Pressed trigger that has the same code as the When New-Form instance trigger.
To test the form, you run it and log in a Customer 104. When you click Query Orders, all orders are shown, not just those for Customer 104.
What is the best way to correct this issue to ensure that the customer can never query another customer's orders?
A. Delete the Key-Exqry trigger and put its code in an On-Select trigger.
B. Delete the Key-Exeqry trigger and add the its first line after the call to GO_BLOCK in the When-New-Form-instance trigger.
C. Delete the Key-Exqry trigger and put its code in a Pre-Query trigger.
D. Change the last line of the When-Button-Pressed code to:
DO_KEY ('EXECUTE_QUERY');
문제 #2
To troubleshoot a problem with a form, you have added a call to the MESSAGE () built-in at the beginning of the When-Validate-Item trigger of the Customer_Id then in the Orders Block of the Orders form. The message simply states that the trigger is firing.
You run the form, make a change in Customer_Id, and then tab out of the item but the message does not appear. What are two possible causes for this problem?
A. The MESSAGE () built-in is not allowed in validation triggers.
B. There is a syntax error in the call to the MESSAGE() built-in.
C. The item is using an LOV for validation.
D. The validation unit of the form needs to be changed.
E. Validation for the Customer_Id item failed.
F. The form is in Enter-Query mode.
문제 #3
The Employees database table contains more columns than can be displayed at one time in a form. You create a data block that uses all the columns. How can you enable users to interact with all the items and switch between them without scrolling or closing anything?
A. Define multiple content canvases; display one in a modeless window and the others in modal windows.
B. Define multiple content canvases and display them in multiple modal windows.
C. This is not possible because items from a single block must be displayed on the same canvas and window.
D. Define multiple content canvases and display them in multiple modeless windows.
E. Define multiple content canvases and display them in the same modeless window.
문제 #4
Identify a function of the Forms Servlet.
A. It starts a Forms runtime session.
B. It creates a dynamic HTML file.
C. It connects to and communicates with the database server.
D. It manages network requests from the Forms Client.
E. It renders the Forms Services application display for the user.
문제 #5
The Orders database table uses Order_id as its primary key. You have written the following code to use in the Orders block of a form:
SELECT orders_seq.NEXTVAL
INTO :orders.order_id
FROM SYS.dual;
Which statement is true about this code?
A. You should place this code in Pre-insert trigger to minimize the gaps in Order IDs.
B. You should place this code in a Post_insert trigger to minimize the gaps in Order IDs.
C. If the named sequence does not exist, it is automatically created the first time the code is called.
D. If you place this code in a trigger, you should ensure that Order_Id has its required property set to Yes.
E. If you place this code in a trigger, you should ensure that Order_Id has its Database Item property set to No.
F. You should place this code a in a database trigger to minimize the gaps in Order IDs.
G. If you place this Code in a trigger that fires when the record is inserted into the database, you will likely have more gaps in Order IDs than if you use the sequence as a default value for the item.
질문과 대답:
| 문제 #1 정답: D | 문제 #2 정답: C,F | 문제 #3 정답: A | 문제 #4 정답: A | 문제 #5 정답: A |

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







고추쌈장 -
Oracle인증 1z1-151, 1z0-591시험 통과했어요.
덤프공부지만 덤프를 통채로 해석해가며 자기것으로 만들려고 더 열심히 공부했어요.
덤프를 달달 외우기보다는 시간이 많이 걸렸지만 뭔가 남은게 있는거 같아 뿌듯하네요.