Multiple Choice
What would the browser display if it executed the following script
< script type = "text/javascript" >
< !--
For ( var count = 1; count < = 10; ++count )
{
If ( count == 5 )
Break;
}
Document.writeln( count ) ;
//-- >
< /script >
A) Nothing; the script would generate an error.
B) 1
C) 5
D) 10
Correct Answer:

Verified
Correct Answer:
Verified
Q4: Which of the following is not required
Q5: What would the browser display if it
Q6: Which of the following will not evaluate
Q7: What would the browser display if the
Q8: What is the value of num after
Q10: Consider the following code selections. Assume count
Q11: In a switch statement, the _ case
Q12: What would the browser display if it
Q13: Switch statements contain _ labels.<br>A) select<br>B) if...else<br>C)
Q14: Which of the following will not evaluate