Answer the following statements true (T) or false (F)
1. The statement txtBox = "Hello" is an example of a syntax error.
2. The following statements assign the lowercase letters to the string variable alphabet. (T/F)
Dim alphabet As String
alphabet = abcdefghijklmnopqrstuvwxyz
3. The following statement is valid where dog and cat are variables of the same type. (T/F)
dog = cat
4. Option Explicit requires you to declare every variable before its use.
5. With Option Strict On, a statement of the form intVar = dblVar is not valid.
1. False
2. True
3. False
4. True
5. True
Computer Science & Information Technology