최신CIW JAVA XCRIPT FUNDAMENTALS - 1D0-435무료샘플문제
문제1
JavaScript contains both Keywords that you must use to achieve specific results and Reserved words that you are not permitted to use for variable or function names.
JavaScript contains both Keywords that you must use to achieve specific results and Reserved words that you are not permitted to use for variable or function names.
정답: A
문제2
Some methods are also called functions, because they can return values.
Some methods are also called functions, because they can return values.
정답: A
문제3
Consider the following Code:
<script>
var state = "";
var orderAmount = 50;
state = prompt("Which state do you live in?","");
if (state.toUpperCase() == "CA") {
alert("Your total owed is: " + (orderAmount * 1.0825));
} else {
alert("Your total owed is:" + orderAmount);
}
</script>
What will the alert method display if the user lives in Tennessee?
Consider the following Code:
<script>
var state = "";
var orderAmount = 50;
state = prompt("Which state do you live in?","");
if (state.toUpperCase() == "CA") {
alert("Your total owed is: " + (orderAmount * 1.0825));
} else {
alert("Your total owed is:" + orderAmount);
}
</script>
What will the alert method display if the user lives in Tennessee?
정답: A
문제4
A _________ creates an empty template from which real-time objects, called __________, can be generated.
A _________ creates an empty template from which real-time objects, called __________, can be generated.
정답: B
문제5
What is the primary difference between method and functions when working with custom JavaScript objects?
What is the primary difference between method and functions when working with custom JavaScript objects?
정답: B
문제6
__________ are used in expressions to store or return a value.
__________ are used in expressions to store or return a value.
정답: C
문제7
In JavaScript, which of the following will clear a cookie?
In JavaScript, which of the following will clear a cookie?
정답: C
문제8
Which property of the form object describes the URL to which the form data is submitted?
Which property of the form object describes the URL to which the form data is submitted?
정답: C
문제9
__________ and __________ are interchangeable in JavaScript.
__________ and __________ are interchangeable in JavaScript.
정답: D