goo blog サービス終了のお知らせ 

killtestのIT問題集ブログ

killtestの最新試験参考書を提供し、合格することが保証できます!

killtest Oracle認定Javaアソシエイツ(OCJ-A)

2011-07-22 14:40:43 | 日記
Oracle認定Javaアソシエイツ(OCJ-A)

この認定資格は、Javaテクノロジーを使用したアプリケーション開発やソフトウェアプロジェクト管理のキャリアにおける理想的な第一歩となります。オブジェクト指向概念の基礎知識、Javaプログラミング言語、Javaのプラットフォームとテクノロジーに関する全般的な知識について認定します。

killtest.jpを選んだ絶好なチャンスだと思います!killtest.jpの問題集は世界中権威的な専門家が作りあがった作品でございます、100%気楽に合格することが保証いたします。

killtest Lotus CLP 190-804試験問題集、無料デモも提供てきます。

2011-07-22 09:04:17 | 日記
killtest Lotus CLP 190-804試験は、プロジェクトマネジメントスキルの向上を目指す方を対象に作られたワールドワイドの認定資格です。試験出題範囲には、共通したプロジェクトマネジメント手法を原則としたベストプラクティスを基に、killtest問題解決や交渉、リーダーシップ、スコープ定義/管理などが定義されており、またコミュニケーション、チーム育成といった内容にも重点が置かれています。

試験番号: 190-804
試験の名称: Using JavaScript in IBM Louts Domino 8 Applications

1.Which one of the following designated lines has incorrect code?
// initialize the variables
secsPerMin = 60; // <LINE A>
var minsPerHour = 60;
var hoursPerDay = 24;
var daysPerYear = 365;
// perform calculations
var secsPerDay = secsPerMin * minsPerHour * hoursPerDay; //<LINE B>
var secsPerYear = secsPerDay * daysPerYear;
document.writeln("There are ");
document.writeln(secsperYear); //<LINE C>
document.writeln(" seconds per year.

"); //<LINE D>
A.<LINE A>
B.<LINE B>
C.<LINE C>
D.<LINE D>
Answer:C

2.Look at the following code for the onClick event of a button:
function printvar() { var1 = 20; alert( 'the value of var1 is ' + var1 );}
var var1 = 10;
printvar();
Which one of the following will be the value of var1 in the alert message?
A.10
B.20
C."10"
D.undefined
Answer:B

3.Marie is getting an error in the following line of JavaScript code that is attached to a button on a Notes
Form: totalAttempts[0] = 1;
How can she add error checking to this code to handle the error?
A.if (isError(totalAttempts[0] = 1)) {alert ("totalAttempts not defined");}
B.try {totalAttempts[0] = 1;} catch (e) {alert ("totalAttempts not defined");}
C.errorHandle messageAlert;totalAttempts[0] = 1;messageAlert: alert ("totalAttempts not defined");
D.onError GoTo messageAlert;totalAttempts[0] = 1;messageAlert: alert ("totalAttempts not defined");
Answer:B

4.Uma has written the following code to compare two values in the form onSubmit event:
resp=document.forms[0].city.value;
if (resp = 'Boston') { alert ("You are from Boston."); } else { alert ("You are not from Boston."); };
Uma tests her form. However, every time she saves it, the alert says "You are from Boston.", even when
she enters "New York". Which one of the following causes this to happen?
A.The form name should be used to reference the form.
B.The city field on the form is named "City", not "city".
C.The comparison operator to test equality should be "==".
D.There is no "End If" at the end of the If statement block.
Answer:C

5.The following code will produce a run-time error:
{ // Line 1 path=location.pathname.toLowerCase( ); // Line 2 nsfPos=path.indexOf(".nsf");
// Line 3 path=path.substring(0, nsfpos+5); // Line 4 }
Which one of the lines is incorrect?
A.Line 1
B.Line 2
C.Line 3
D.Line 4
Answer:D