Q. There is a variable "name" that contains the name of a person, which is/are the correct print statement(s) to print the "name" suffix with "Hello".
-
(A)
print "Hello $name";
-
(B)
print "Hello " . $name;
-
(C)
print ("Hello $name");
-
(D)
All of the above
✅ Correct Answer: (D)
All of the above