Correct Answer : .
Explanation :
Like in shell, concatenation is performed by placing two variables side by side. This case is not followed with perl. Rather perl uses . (dot) operator for concatenating two variables. For example,
$ perl -e '$x="FreeTime" ; $y="Learning" ; print($x . $y);'
FreeTimeLearning