Python String MCQs

Question 6: Which of the following is true about triple quoted strings?

Question 7: What will be the output of the following code?

var1="Hello"
var2="World"
var3="HelloWorld"

print(var1+var2 == var3)
print(var1+var2 is var3)