Consider the following lines of code:
$_ = "This is a test";
s/^([^ ]*)\s*([^ ]*)/$2 $1/;
print;
What is the output of these lines of code?
h Tis a test
is This a test
i Thiss a test
his T is a test
Submit