D. Do the online reading: Overloading the plus operator, doing the next set of questions while you do so. 1. 11 + 22 evaluates to: (HINT: enter error if it generates an error) ANS. 33 2. '11' + '22' evaluates to: (HINT: enter error if it generates an error) ANS. '1122' ANS. 1122 ANS. "1122" 3. '11' + str(3 + 3) + '22' evaluates to: (HINT: enter error if it generates an error) ANS. '11622' ANS. "11622" ANS. 11622 4. '11' + 33 evaluates to: (HINT: enter error if it generates an error) ANS. error ANS. ERROR 5. What does the following code snippet print:
 x = 1 
y = 2
z = 3
print(x, y, z)
a. 1, 2, 3 b. 1 2 3~ c. 6 d. 123 6. What does the following code snippet print:
 x = 1 
y = 2
z = 3
print(str(x) + str(y) + str(z))
a. 1, 2, 3 b. 1 2 3 c. 6 d. 123~ 7. What does the following code snippet print:
 x = 1 
y = 2
z = 3
print(x + y + z)
a. 1, 2, 3 b. 1 2 3 c. 6~ d. 123 8. What does the following code snippet print:
 x = 1 
y = 2
z = 3
print(str(x + y) + str(z))
ANS. 33 9. Implement a function named print_equation that given two numbers x and y prints an equation for the sum of them (e.g., if x is 65 and y is 11, the function would print 65+11=76) M. Line 1 -> def print_equation(x, y): M. Line 2 ->     print(str(x) + "+" + str(y) + "=" + str(x+y)) M. ->     print(x, y, x+y) M. ->     print(x+++y+ = +x+y) M. ->     print("65+11=76") D. Do the online reading: Accumulating Sequences, doing the next set of questions while you do so. 10. Implement the following function, per its doc-string. You do NOT have to be completely correct, just try to get the main idea correct, with guidance from the reading.
def make_simple_list(m, n):
"""
Returns the list [m, m+1, m+2, ... n],
where m and n are the given arguments.
For example, if m is 5 and n is 13,
then this function returns:
[5, 6, 7, 8, 9, 10, 11, 12, 13]
"""