(Choose 1 answer)
What would the browser display if the following code is executed in a script?
var x = 11,
y = 14;
if (x > 13)
if (y > 13)
document.writeln("x and y are
else
document.writeln("x is <= 13");
A. x is <= 13
B. nothing, the code will generate an error
C. x and y are > 13
D. 11