The output of the program will be:
Monday, the 10th
So the correct response is:
Monday, the 10th
first = "Monday, "
second = "the 10th"
print(first + second)
(1 point)
Responses
Monday, + the 10th
Monday, + the 10th
first + second
first + second
Monday, the 10th
Monday, the 10th
an error message
1 answer
The output of the program will be:
Monday, the 10th
So the correct response is:
Monday, the 10th