Lotus認証エンジリアCLPはCeritified Lotus Professionalの略書き。CLPは世界中の高級技術の人材認証って思ってます。CLPの認証証を持ってたら、あなたが普通の技術者から高級技術専門家になると思ってます、CLP認証は貴方が世界中最新、最先進システム技術。
TestPassPort 実践試験の CLP 190-804 は最も標準的な技術を正確的に書き入れ、認証した専門家と作者の出版した新製品だけを使います.
下記は本試験の問題
190-804: please download free 190-804 in PDF Version.
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.</b><p>”); //<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