Given the following function:

```Function DivideIt(X) As Float
Set DivideIt = Int(X/2)
End Function```
What is displayed when the following statement in the main program is executed?
```Write DivideIt(9)```
a. 4 b. 4.5 c. 5 d. 5.0


A

Computer Science & Information Technology

You might also like to view...

What value does function mystery return when called with a value of 4?

int mystery (int number) { if (number <= 1) { return 1; } else { return number * mystery(number – 1); } } a. 0. b. 1. c. 4. d. 24.

Computer Science & Information Technology

The ____ constraint is the default for tasks that are entered into a project with an assigned Start date.

A. Finish No Later Than B. As Soon As Possible C. As Late As Possible D. Start No Earlier Than

Computer Science & Information Technology

In a lookup formula, the defined range is referred to as the ________

Fill in the blank(s) with correct word

Computer Science & Information Technology

Which version of Ethernet was introduced in 1990?

A. 10BaseFL B. 802.3 C. CSMA/CD D. 10BaseT

Computer Science & Information Technology