What are the values of the following expressions?
In each line, assume that:
s = "Hello" t = "World"
s + t
The expression s + t
concatenates the two strings s
and t
. Given that:
s = "Hello"
t = "World"
The value of the expression s + t
would be:
"HelloWorld"