In the code below, what is the scope of the salary variable?
Sub Test1()
Dim salary as Currency
salary = 5000
End Sub
a. Subroutine-level scope
b. Form-level scope
c. Project-level scope
d. Module-level scope