IBM LOT-922 시험 개요:
| 인증 벤더: | IBM |
|---|---|
| 시험명: | IBM Lotus Domino 8.5.2 애플리케이션 개발: 고급 XPage 설계 |
| 시험 번호: | LOT-922 |
| 지원 언어: | English |
| 시험 형식: | 시나리오 기반 문제, 객관식 |
| 관련 자격증: | IBM Lotus Domino 8.5 애플리케이션 개발 IBM XPages 개발 인증 (레거시 Domino 8.5 제품군) |
| 권장 교육: | IBM XPages 및 Domino 8.5 개발 과정 (레거시) |
| 시험 등록: | IBM 인증 포털 |
| 샘플 문제: | IBM LOT-922 샘플 문제 |
| 응시 방법: | 감독 하에 시행되는 시험 (시행 방식은 IBM 인증 파트너에 따라 다르며, 과거에는 온라인 및 시험 센터에서 응시 가능했습니다) |
| 전제 조건: | IBM Lotus Domino 애플리케이션 개발 및 Domino Designer 8.5.2 이상 버전에서의 XPages 개발 경험이 권장됩니다. |
| 공식 요강 URL: | https://www.ibm.com/training/certification |
IBM LOT-922 시험 요강 주제:
| 섹션 | 목표 |
|---|---|
| 성능 및 최적화 | - 효율적인 렌더링 전략 - 서버 왕복 최소화 및 부하 최적화 |
| XPages 아키텍처 및 기초 | - 페이지 구조 및 컴포넌트 렌더링 - XPages 요청 라이프사이클 및 런타임 모델 |
| 고급 XPages 컨트롤 및 사용자 정의 컴포넌트 | - 동적 콘텐츠 렌더링 및 계산된 속성 - 사용자 정의 컨트롤 및 재사용성 패턴 |
| 데이터 소스 및 통합 | - Java 클래스 및 SSJS와의 통합 - Domino 데이터 바인딩 및 뷰 데이터 소스 |
| 서버 사이드 자바스크립트(SSJS) 및 이벤트 처리 | - 오류 처리 및 디버깅 기법 - XPages의 이벤트 기반 프로그래밍 |
| 보안 및 접근 제어 | - XPages 애플리케이션의 ACL 및 역할 기반 접근 - 인증 및 세션 관리 |
최신 IBM-Lotus LOT-922 무료샘플문제
문제 #1
Joe wishes to retrieve the HttpServletRequest while his XPage is loading. Which of the following is true regarding this activity?
A. It is not possible to obtain this information as an XPage is loading
B. Joe needs to add the following server side JS code to the afterPageLoad event: var request = facesContext.getRequest();
C. Joe needs to add the following client side JS code to the beforePageLoad event:
var clientContext = facesContext.getClientContext();
var request = clientContext.getRequest();
D. Joe needs to add the following server side JS code to the beforePageLoad event:
var externalContext = facesContext.getExternalContext();
var request = externalContext.getRequest();
문제 #2
Jo wants to make a configurable list of countries available to the client side JavaScript of her XPage for use in various different fields on the web page. What would be the most efficient approach?
A. Add a @Decorum to a client side script library to look up the country list in each place it is required
B. Use the Output Script control to create a global Client Side JavaScript object to reference when the list is required
C. Perform an AJAX request to get the country list from another XPage when it is required using dojo.xhrGet
D. Add an @DbColumn to a server side script library to look up the country list in each place it is required
문제 #3
Francis wants to add a ClientSide JavaScript library called "loading.js" to his XPages. What is the best method to achieve this?
A. He must add the script library as a resource to each XPage.
B. He should add the following code to a theme:
<resource>
<content-type>application/x-javascript</content-type>
<href>loading.js</href>
</resource>
C. He should add it to a Custom Control, which he should then add to every XPage.
D. He should add the following code to a theme:
<resource>
<content-type>text/javascript</content-type>
<href>loading.js</href>
</resource>
문제 #4
Pat wishes to create a new XPages UI control which will take user input. At a MINIMUM which of the following does he need to do?
A. Create a UI Component extension Java Class that extends UIInput, create an xsp-config file to define the tag, create a Java Class which will serve as a renderer, in order to render the tag as HTML markup.
B. Create a custom control with an edit box and reuse the custom control within the XPages
C. Create a UI Component extension Java Class that extends UIInputComponent, create an xspconfig file to define the tag, create a Java Class which will serve as a renderer, in order to render the tag as HTML markup. Then create a managed bean definition in faces-config.xml.
D. Create a UI Component extension Java Class that extends UIInputComponent, create an xspconfig file to define the tag, create a Java Class which will serve as a renderer, in order to render the tag as HTML markup.
문제 #5
Tim has an XPage containing an Edit Box. He has read that it is possible to use the Dojo Toolkit NumberSpinner control in XPages, and he wishes to modify his XPage so that the Edit Box will appear as a Number Spinner in the browser. What would the steps be to accomplish this?
A. Import the NumberSpinner.js file from Dojo into the application as a JavaScript Library.
In the XPage, in the Resources tab of the Properties view, add a JavaScript Library resource for
that NumberSpinner.js file to the XPage.
Configure the Edit Box to set the dojoType to "dijit.form.NumberSpinner".
B. Import the NumberSpinner.js file from Dojo into the application as a Dojo Module.
In the XPage, in the Resources tab of the Properties view, add that Dojo Module resource for that
NumberSpinner.js file to the XPage.
Configure the Edit Box to set the dojoType to "dijit.form.NumberSpinner".
C. From the Dojo Tollkit Website, get the URL to the most recent version of the NumberSpinner.js control (where the URL begins with http://). In the XPage, in the Resources tab of the Properties view, add a JavaScript Library using that
URL.
Configure the Edit Box to set the dojoType to "dijit.form.NumberSpinner".
D. In the XPage, in the Resources tab of the Properties view, add a Dojo Module resource for
"dijit.form.NumberSpinner" to the XPage.
Configure the Edit Box to set the dojoType to "dijit.form.NumberSpinner".
질문과 대답:
| 문제 #1 정답: D | 문제 #2 정답: B | 문제 #3 정답: B | 문제 #4 정답: A | 문제 #5 정답: D |














0 개 고객 리뷰
품질과 가치ITCertKR 의 높은 정확도를 보장하는 최고품질의 덤프는 IT인증시험에 대비하여 제작된것으로서 높은 적중율을 자랑하고 있습니다.
테스트 및 승인ITCertKR 의 덤프는 모두 엘리트한 전문가들이 실제시험문제를 분석하여 답을 작성한 만큼 시험문제의 적중률은 아주 높습니다.
쉽게 시험패스ITCertKR의 테스트 엔진을 사용하여 시험을 준비한다는것은 첫 번째 시도에서 인증시험 패스성공을 의미합니다.
주문하기전 체험ITCertKR의 각 제품은 무료 데모를 제공합니다. 구입하기로 결정하기 전에 덤프샘플문제로 덤프품질과 실용성을 검증할수 있습니다.
