Given that String[] str has been initialized, to get a copy of str[0] with all characters converted to upper case, use the following statement:
a. str[0].toUpperCase();
b. str.toUpperCase();
c. str[0].UpperCase();
d. str.UpperCase();