What is the output of this program? first = "Monday, " second = "the 10th" print(first + second) (1 point)

1 answer

The output of the program will be:

Monday, the 10th

This is because the program concatenates the two strings first and second using the + operator and then prints the result.