Which of the following will set the variable num to the value of 10 if num = 10.3625?
a.
```
num = floor(10.3625);
```
b.
```
num = Math.abs(10.3625);
```
c.
```
num = Math.floor(num);
```
d.
```
Math.floor(num);
```
c.
```
num = Math.floor(num);
```
Computer Science & Information Technology
You might also like to view...
A ________ error occurs when the code is executed, displaying a description of the error
A) data port B) debugging C) run-time D) hard drive
Computer Science & Information Technology
An ________ is a line that serves as a frame of reference for measurement.
a. axis b. plot area c. category axis d. value axis
Computer Science & Information Technology
The most common kind of pretexting in cyberspace is ________.
Fill in the blank(s) with the appropriate word(s).
Computer Science & Information Technology
The GroupBox object can be used in VSTO to contain RadioButton objects.
Answer the following statement true (T) or false (F)
Computer Science & Information Technology