Excel Experts Quiz

Question 1 of 13

What's the best code out of the following:

Const intOne = 1
Sub DisplayOne()
MsgBox intOne
End Sub

Sub DisplayOne()
MsgBox "1"
End Sub

Sub DisplayOne()
i = 1
MsgBox i
End Sub

Sub DisplayOne()
Dim i As Integer

i = 1
MsgBox i
End Sub

Sub DisplayOne()
MsgBox 1
End Sub