1D0-435 CIW JavaScript Fundamentals exam

Loading demo links...

Showing 7–9 of 10 questions

Question 7 (Exam Set B)

Assuming Z= 3 and y= 2, what would be the result of : Z+=Y

Select an option, then click Submit answer.

  • The value of Y is now 5

  • The value of Y is now 3

  • The value of Z is now 5

  • The value of Z is now 2

  • 5


Question 8 (Exam Set C)

The key difference between the While Statement and the Do While Statement is

____________

Select an option, then click Submit answer.

  • The Do While Statement does not check the condition until it has iterated the loop at the first time. The While Statement will check the condition before beginning the first loop. B. None. There is no Do While loop in JavaScript.

  • The While Statement does not check the condition until it has iterated the loop at the first time. The Do While Statement will check the condition before beginning the first loop. D. The Do While Statement will check the condition before it loops the first time. The Do
    While Statement will never check the condition.


Question 9 (Exam Set B)

When you want to evaluate multiple objects in an array, you need a __________ instead of a ___________.

Select an option, then click Submit answer.

  • literal, variable

  • method, function C. variable, literal

  • function, method