Question:If you wanted a variable containing the letters
A
throughZ
, that allowed you to access each letter independently, which of the following approaches could you use?
A $str = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
B range('A', 'Z');
C explode("", "ABCDEFGHIJKLMNOPQRSTUVWXYZ");
D You would use the ALPHA_ARRAY constant
E None
+ AnswerA B C
+ Report