Mini-Exercise #1 -- Answer
What does this print?
Dim x As Integer
x = 10
If
x = 1
Then
Print “octopus”
ElseIf x = 2 Then
Print “squid”
Else
Print “clam”
EndIf
Print “mollusc”
clam
mollusc