Multiple Choice
What would the browser display if the following script were executed
< script type = "text/javascript" >
Var count = 0;
Var total = 0;
While ( count < = 5 )
{
Total = total + 10;
Count = count + 1;
}
Document.write( total ) ;
< /script >
A) Nothing; the browser would generate an error.
B) 0
C) 50
D) 60
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q19: Which of the following statements is correct<br>A)
Q20: If the initial value of a is
Q21: A program in which all statements are
Q22: What is the value of i after
Q23: Which of the following flowchart symbols can
Q24: Which of the following is not a
Q25: The word sequence in the term sequence
Q26: What would the browser display if the
Q27: Which of the following is the correct
Q29: What type of loop is shown in