Question:What is the output of the following:$str= "good"; $$str= "bye"; echo ${$str};
$str= "good"; $$str= "bye"; echo ${$str};
A good B bye C good bye D None
+ AnswerB
+ Report