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 > 13" );
else
document.writeln( "x is <= 13" );
```

a) nothing, the code will generate an error
b) 11
c) x and y are > 13
d) x is <= 13

d) x is <= 13

Computer Science & Information Technology

You might also like to view...

When collecting data in a spreadsheet, each ________ is a field in a record

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Filters CANNOT be applied to collapsed lists

Indicate whether the statement is true or false.

Computer Science & Information Technology