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

```
var A = prompt("Enter a number:");
document.write(parseFloat(A) + ", ");
document.write(parseInt(A));
```

a. 6.35NaN
b. 6.35
6
c. 6.35, 6
d. 6.35, 6.35


c. 6.35, 6

Computer Science & Information Technology

You might also like to view...

In the equation x = y/z if y and z are int and x is a double, the values are y = 25 and z = 11, what will be the value of the variable x?

A. 2.0000000000 B. 3.0000000000 C. 2.2727272727 D. 14.000000000

Computer Science & Information Technology

The condition expression1 ^ expression2 evaluates to true when .

a) expression1 is true and expression2 is false b) expression1 is false and expression2 is true c) both expression1 and expression2 are true d) Both a and b.

Computer Science & Information Technology

If a project manager wants to view how project team members are being assigned at a point in the project in Project 2013, the can navigate to the ________ view

A) Team Planner B) Resource Sheet C) Calendar D) Gantt Chart

Computer Science & Information Technology

The process of converting algorithms into an actual computer program is known as flowcharting.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology