Question:What will be the output of the following code?$arr = "a";$arr[0]="b";echo $arr;echo $arr[0];
A ab B $arr is undefined C bb D Parse error
+ AnswerA
+ Report