crash course on python week 2 quiz answers: Shuffle Q/A 2 Post author:Devendra Kumar Post published: Post comments:0 Comments 40. What's the value of this Python expression: "big" > "small"? Answers TrueFalsebigsmall 41. What is the elif keyword used for? Answers To mark the end of the if statementTo handle more than two comparison casesTo replace the “or” clause in the if statementNothing – it’s a misspelling of the else-if keyword 42. When using an if statement, the code inside the if block will only execute if the conditional statement returns what? Answers FalseA string0True 43. What's the value of this Python expression?((10 >= 5*2) and (10 <= 5*2)) Answers TrueFalse105*2 44. Can you calculate the output of this code?def greater_value(x, y): if x > y: return x else: return yprint(greater_value(10,3*5)) Answers 15 Previous Please Share This Share this content Opens in a new window Opens in a new window Opens in a new window Opens in a new window Opens in a new window Opens in a new window Opens in a new window Opens in a new window Opens in a new window Opens in a new window Opens in a new window Devendra Kumar Project Management Apprentice at Google You Might Also Like Google Apprenticeship Process Customer Service Leave a Reply Cancel replyCommentEnter your name or username to comment Enter your email address to comment Enter your website URL (optional) Save my name, email, and website in this browser for the next time I comment.