A(n) __________ constant is a named constant that is available to every module in the program.

Fill in the blank(s) with the appropriate word(s).

global

Computer Science & Information Technology

You might also like to view...

Which of the following sections of code will calculate the monthly payment for a $150,000 house with a 30 year mortgage at an annual rate of 5.5%, and assign the result to dblMPay?

a. ```Dim dblAIntRate as Double = 5.5 Dim dblLoanAmt as Double = 150000 Dim intYears as Integer = 30 Dim dblMPay as Double dblMPay = Pmt(dblAIntRate / 12, intYears * 12, -dblLoanAmt) ``` b. ```Dim dblAIntRate as Double = 5.5 Dim dblLoanAmt as Double = 150000 Dim intYears as Integer = 30 Dim dblMPay as Double dblMPay = Pmt(dblAIntRate, intYears, -dblLoanAmt) ``` c. ```Dim dblAIntRate as Double = 5.5 Dim dblLoanAmt as Double = 150000 Dim intYears as Integer = 30 Dim dblMPay as Double dblMPay = Pmt(dblAIntRate / 12, intYears, -dblLoanAmt) ``` d. ```Dim dblAIntRate as Double = 5.5 Dim dblLoanAmt as Double = 150000 Dim intYears as Integer = 30 Dim dblMPay as Double dblMPay = Pmt(dblAIntRate, intYears * 12, -dblLoanAmt) ```

Computer Science & Information Technology

Which statement is not true about the following array?

```Dim strFriends() As String = { "Rose", "Bud", "Flower", "Spring" } ``` a. The String "Flower" is located at index position 2. b. All elements have been assigned values. c. The array has an unlimited number of elements. d. All of the above are true statements about the array.

Computer Science & Information Technology