Given the following code snippet, what will be displayed on the web page if the user enters 5Guys! at the prompt?

```
var result = " ";
var guys = prompt("How many guys are there?");
result = (parseInt(guys);
document.write(result);
```

a. 5Guys!
b. 5.0
c. NaN
d. 5

d. 5

Computer Science & Information Technology

You might also like to view...

Choose ________ orientation to display more data across the page

A) Report B) Datasheet C) Landscape D) Design

Computer Science & Information Technology

A complete set of data elements within a table is called a record

Indicate whether the statement is true or false

Computer Science & Information Technology