Enter the round.html text into a new Web page, then load the page in the browser to verify that it behaves as described.
Modify the page so that instead of rounding the number to one decimal place, it rounds to two decimal places. For example, the number 3.14159 would be rounded down to 3.14, whereas the number 5.986 would be rounded up to 5.99.
```
Number Rounder
Enter a number:
onclick="number=parseFloat(document.getElementById('numberBox').value); rounded=Math.round(number*100)/100; document.getElementById('outputDiv').innerHTML=
number + ' rounded to two decimal places is ' + rounded;">
```
Computer Science & Information Technology
You might also like to view...
All addresses that begin (in hex) with the digits FD are ________ addresses
A) Global unicast B) Link local C) Multicast D) Unique local
Computer Science & Information Technology
Passive scanners are advantageous in that they require vulnerability analysts to get approval prior to testing.
Answer the following statement true (T) or false (F)
Computer Science & Information Technology