IBM 000-400 시험 개요:
| 인증 벤더: | IBM |
|---|---|
| 시험명: | IBM 평가: IBM WebSphere Operational Decision Management V8.0, 애플리케이션 개발 |
| 시험 번호: | A2180-400 |
| 시험 형식: | 객관식, 단일/복수 선택형 |
| 지원 언어: | 영어, 일본어 |
| 시험 시간: | 90분 |
| 실제 시험 문항 수: | 51-55 |
| 응시료: | 약 200달러 USD (지역에 따라 상이함) |
| 합격 점수: | 60% |
| 자격증 유효 기간: | 정식 유효 기간 없음 |
| 권장 교육: | IBM WebSphere ODM V8.0 애플리케이션 개발 교육 과정 |
| 시험 등록: | Pearson VUE 등록 IBM 인증 등록 |
| 샘플 문제: | IBM 000-400 샘플 문제 |
| 응시 방법: | 감독관이 감독하는 온라인 시험 또는 공인 Pearson VUE 시험 센터에서 응시 가능 |
| 전제 조건: | 정식 선수 요건은 없음; IBM WebSphere Operational Decision Management V8.0에 대한 실무 경험을 권장함 |
| 공식 요강 URL: | https://www.ibm.com/training/certification |
IBM 000-400 시험 요강 주제:
| 섹션 | 비중 | 목표 |
|---|---|---|
| 주제 1: 사용자 비즈니스 환경에 맞춘 사용자 정의 | 13% | - 사용자 정의 DVS 시나리오 및 핵심 성과 지표(KPI) - 규칙 모델 확장 기능 - Decision Center 그래픽 사용자 인터페이스(GUI) 사용자 정의 - 동적 도메인 및 사용자 정의 값 편집기 |
| 주제 2: 규칙 설계 및 개발 | 25% | - 규칙 프로젝트 생성 및 구성 - 규칙 세트 매개변수, 변수 및 규칙 흐름 설계 - Business Object Model (BOM) 및 Execution Object Model (XOM) 설계 - BOM/XOM 리팩토링 및 유지 관리 - 규칙 아티팩트: 실행 규칙, 의사결정 표, 의사결정 트리, 템플릿 |
| 주제 3: 규칙 애플리케이션 및 실행 연동 | 12% | - Java SE 및 Java EE 연동 패턴 - 상태 유지형 및 비유지형 규칙 세션 - 규칙 실행 방식 및 알고리즘 |
| 주제 4: 성능 최적화 | 10% | - Decision Center 성능 개선 - 실행 알고리즘 선택 및 종료 기준 - Rule Execution Server (RES) 최적화 |
| 주제 5: 규칙 배포 및 관리 | 22% | - Rule Execution Server (RES)로의 배포 - RuleApp 및 규칙 세트 패키징 - 규칙 프로젝트 보안 및 역할 기반 접근 제어 - 버전 관리, 기준 설정 및 감사 추적 |
| 주제 6: 규칙 유효성 검증 | 18% | - Decision Validation Services (DVS) 설정 및 구성 - 규칙의 일관성 및 완전성 분석 - 시나리오 테스트, 시뮬레이션 및 규칙 디버깅 - 사용자 정의 규칙 쿼리 및 보고서 생성 |
최신 IBM Certified Application Developer 000-400 무료샘플문제
문제 #1
The response time of Decision Center while browsing and editing rule artifacts is slow. What should the application developer do to improve the performance?
A. Augment the number of Business Object Model (BOM) entries and add more verbalizations.
B. Tune the JVM maximum heap size.
C. Increase the Execution Unit (XU) connection pool size.
D. Use an Embedded Derby database.
문제 #2
A Record instance is passed to the ruleflow as a ruleset parameter. A rule task performs validation and should accumulate all the issues found in the Record. The associated rules have the following characteristics:
-There are numerous action rules and decision tables. ?The rule conditions only involve the
Record class and its attributes. -The rule conditions perform many different tests in various order. -The action part of the rules only adds messages to a list that is not involved in the conditions of the rules.
Which execution settings should the application developer choose for the validation rule task?
A. Algorithm: RetePlus Exit Criteria: None
B. Algorithm: Fastpath Exit Criteria: RuleInstance
C. Algorithm: RetePlus Exit Criteria: RuleInstance
D. Algorithm: Sequential Exit Criteria: None
문제 #3
A ruleset is deployed to Rule Execution Server and the rule administrators requested that Decision Warehouse be used to store trace information about ruleset executions. What should the application developer do to activate tracing on the already deployed ruleset?
A. Use the res-deploy Ant task with the correct parameters to enable tracing on the deployed ruleset.
B. Tracing cannot be enabled without deploying the ruleset again with the monitoring.enabled ruleset property set to true.
C. Navigate to the ruleset within Rule Execution Server console and click the Show Monitoring Options to enable tracing.
D. Navigate to the ruleset within Rule Execution Server console and add the ruleset.trace.enabled property.
문제 #4
Within a pricing application, there are three valid regions: A, B, and C.
The pricing rules currently include this decision table. The current version of this table has a gap in the rules and does not assign a discount for Gold customers in region C.
To prevent this rule from getting deployed in the future, gaps for this decision table should be treated as an error.
What should the application developer do in Rule Designer to treat gaps as an error condition within this decision table?
A. From the column condition builder, turn on check interval for each condition column.
B. From the decision tables properties, turn on gap checking for all condition columns and set the reporting of gaps to an error level.
C. From the general tab, update the preconditions section with gapChecking=true;
D. From the decision tables properties, turn on gap checking for all condition columns and enforce locking for this table.
문제 #5
The design team decided to populate a Business Object Model (BOM) domain from a database and allow the rule authors to reload domain values within Decision Center when the database is updated. What should an application developer do to implement these requirements?
A. Add a datasource which connects to the database in application server and configure Decision Center to have a reference to the datasource, and set thedomainValueProviderName property to the datasource name on the BOM class.
B. Change the BOM class to add the virtual method: Collection getValues(IlrClass class) for loading data from the database and generatingdomain values.
C. Set the domainValueProviderName property on the BOM class and integrate the implementation class of interface IlrBOMDomainValueProviderinto Decision Center.
D. Set the domainValueProviderName property on the BOM class and integrate the implementation class of interface IlrValueProvider into DecisionCenter.
질문과 대답:
| 문제 #1 정답: B | 문제 #2 정답: D | 문제 #3 정답: C | 문제 #4 정답: B | 문제 #5 정답: C |














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