Answer:
apple apple
banana
Step-by-step explanation:
Given - Consider the following code:
x = "apple"
y = x
z = "banana"
To find - print(x + " " + y + "\\" + z)
It will print -
apple apple
banana
First will apple followed by '' '' that is space then y which is equal to x that is apple then followed by ''\\'' new line then banana.
So, The answer would be
apple apple
banana
Notation used -
'' '' represents space between two values
''\\'' represents new line