Which of the following statements is correct?

a.
```
If ( studentGrade >= 60 )
document.writeln( "Passed" );
```

b.
```
if ( studentGrade >= 60 );
document.writeln( "Passed" );
```

c.
```
if ( studentGrade >= 60 )
document.write( "Passed" );
```

d.
```
If ( studentGrade >= 60 );
document.write( "Passed" );
```


c.
```
if ( studentGrade >= 60 )
document.write( "Passed" );
```

Computer Science & Information Technology

You might also like to view...

Discuss the problems of programming with switch logic. Explain why polymorphism can be an effective alternative to using switch logic.

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

Computer Science & Information Technology

In the accompanying figure, the icon labeled "yourname" at the top is the ____ folder.

A. Desktop B. Home C. Default D. Finder

Computer Science & Information Technology

________ memory uses the hard drive to substitute for RAM.

A. Hard drive B. Flash C. Cache D. Virtual

Computer Science & Information Technology

To paste copied cell contents, you can press the _____ keys.

A. CTRL+C B. CTRL+P C. CTRL+V D. CTRL+X

Computer Science & Information Technology