You have the following code segment :
String1 = "my" String2 = "work" print(String1 + String2)
What is the output of this code?
mywork
Reason — The + operator creates a new string by joining the two operand strings.