Multiple Choice
What would the browser output if the following script is executed
< script type = "text/javascript" >
< !--
Var array = [ [ 1, 2, 3 ], [ 1, 2, 3 ] ];
For ( var i in array )
{
For ( var j in array[ i ] )
Document.write( array[ i ][ j ] + " " ) ;
Document.writeln("< br / >") ;
}
//-- >
< /script >
A) Nothing, the script would generate an error
B) 1 2 3
C) 1 2 3 4 5 6
D) 1 2 3 1 2 3
Correct Answer:

Verified
Correct Answer:
Verified
Q1: What is the effect of the join
Q2: Pass-by- _ is the method of passing
Q3: Which of the following is an illegal
Q5: What does the following code do<br>For (
Q6: Which of the following is the proper
Q7: In JavaScript, numbers and boolean values are
Q8: The first statement below _ the array
Q9: _ are data structures consisting of related
Q10: Which of the following is the proper
Q11: By default, the JavaScript sort method uses