Which of the following JavaScript statements contain variables whose values are destroyed (changed or replaced)?

a)
```
p = i + j + k + 7;
```

b)
```
window.alert( "variables whose values are destroyed" );
```

c)
```
window.alert( "a = 5" );
```

d)
```
stringVal = window.prompt( "Enter string:" );
```

a)
```
p = i + j + k + 7;
```

and

d)
```
stringVal = window.prompt( "Enter string:" );
```

Computer Science & Information Technology

You might also like to view...

To deliver a presentation, use Impress's Speaker Notes view

Indicate whether the statement is true or false

Computer Science & Information Technology

An administrator needs to deploy 1000 servers in a short period of time. Which of the following deployment methods will expedite the OS installations?

A. Use disk duplicating software. B. Use USB disk images to deploy servers. C. Use a disk replicator. D. Use PXE boot to retrieve an image.

Computer Science & Information Technology