For each value read, your program should display the original value, the number rounded to the nearest integer, the number rounded to the nearest tenth, the number rounded to the nearest hundredth and the number rounded to the nearest thousandth.
Math method floor may be used to round a number to a specific decimal place. For example, the statement
```
y = Math.floor( x * 10 + .5 ) / 10;
```
rounds x to the tenths position (the first position to the right of the decimal point). The statement
```
y = Math.floor( x * 100 + .5 ) / 100;
```
rounds x to the hundredths position (i.e., the second position to the right of the decimal point). Write a script that defines four func-
tions to round a number x in various ways:
a) roundToInteger( number )
b) roundToTenths( number )
c) roundToHundredths( number )
d) roundToThousandths( number )
```
1
2
3
4
5
6
7
8
9
You can attach at most two files to a contact record.
Answer the following statement true (T) or false (F)
A ________ check would be used in a field to restrict the fines for speeding violations so that they fall between $50 and $250.
A. completeness B. range C. consistency D. numeric
A hyperlink in an Excel worksheet can do all of the following, except ________.
A. open a different workbook. B. switch to another worksheet. C. open a webpage. D. launch Word.