Questão SCPJ 1.4 - JQ

Ai galera…
estava fazendo o teste quando eu vi esta pergunta

Which of these statements concerning the charAt() method of the String class are true? 
 
Select 2 correct options 
a  The charAt( ) method can take a char value as an argument.   
b  The charAt( ) method returns a Character object.   
c  The expression char ch =  "12345".charAt(3) will assign 3 to ch.   
d  The expression char ch =  str.charAt(str.length()) where str is "12345",  will assign 3 to ch.   
e  The index of the first character is 0. 

Ai, qual delas vc acha que está certa?
Eu escolhi a e, mas não soube responder a segunda…
Falou

As alternativas são:

A - O parametro é um numero inteiro e o tipo ‘char’ é convertido para inteiro automaticamente. o char é um numero de 0 a 65535

E - pelo fato de começar com o indice em 0 (zero)

flw