|
Braindumps of 1D0-435
JavaScript Fundamentals exam
Exam Questions, Answers, Braindumps (1D0-435)
Thanks to all the dumpers, who submit their dumps
on this site. Please submit more dumps, in order to
provide more help to the others. Here's my contribution.
QUESTION 1
In JavaScript, ++x+ will add one to the value of x
after the assignment is complete.
A. FALSE
B. TRUE
Answer: A
QUESTION 2
_______ represent various attributes of an object,
such as height, color, font size, sentence length,
and so forth.
A. Values
B. behaviors
C. Methods
D. Properties
Answer: D
QUESTION 3
A server named www.cobbwebdesign.com can set a cookie
for the domain name www.microsoft.com.
A. FALSE
B. TRUE
Answer: A
QUESTION 4
_________ is the process of creating new copies of
an object
A. Instantiation
B. Repeating
C. Replicating
D. Object coding
Answer: A
QUESTION 5
What does the following JavaScript code do"
"Hello, World!".length;
A. Test the width of a literal string.
B. Writes Hello, World to the screen.
C. Test the length of a literal string.
D. nothing.
Answer: C
QUESTION 6
In JavaScript the operator += will ________________
A. add together the operands and assign the result
to the right operand.
B. assign the value of the right operand to the left
operand.
C. do nothing because it should be =+.
D. add together the operands and assign the result
to the left operand.
Answer: D
QUESTION 7
__________ is used frequently in JavaScript to combine
text strings, especially in conjunction with prompt()
and alert().
A. Concatenation
B. String()
C. Instaniation
D. Confirmation
Answer: A
QUESTION 8
JavaScript is case sensitive, and the keyword "function"
must be all lowercase.
A. FALSE
B. TRUE
Answer: B
QUESTION 9
Cookies are commonly used to store information about
a user to maintain state.
A. FALSE
B. TRUE
Answer: B
QUESTION 10
A _______ is the specific color, width or height that
belongs to the property of an object.
A. method
B. value
C. property.
D. behavior
Answer: B
1D0-435
|