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" );
```
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).
In the accompanying figure, the icon labeled "yourname" at the top is the ____ folder.
A. Desktop B. Home C. Default D. Finder
________ memory uses the hard drive to substitute for RAM.
A. Hard drive B. Flash C. Cache D. Virtual
To paste copied cell contents, you can press the _____ keys.
A. CTRL+C B. CTRL+P C. CTRL+V D. CTRL+X