The strState variable should contain two uppercase letters. Which of the following statements determines whether the variable contains a valid state?
a.If strState Like "[A-Z]" Then
b.If strState Like "[A-Z][A-Z]" Then
c.If strState = "[A-Z][A-Z]" Then
d.If strState Like "[a-z][a-z]" Then