Instructor solution
You may exit out of this review and return later without penalty.
November - Conditionals
1.What will the output be?
greeting = "Hello. "
greeting += "How are you?"
print(greeting)
2.If the input is 6, what is the output from the following:
3.What will the output be?
if 5 > 2:
print("Five is greater than two!")
4.If the input is blue, what will be output be?
5.In the following program, what is the output if the input is "Yes"?
6.Debug the following:
You may exit out of this review and return later without penalty.