11. What is the result of the following operation 3+2*2 ? Answers 379 12. What is the result of the following code segment: type(int(12.3)) Answers floatstrint 13. What is the result of the following code segment: int(True) Answers 10error 14. In Python, what is the result of the following operation: '1'+'2' ? Answers 3‘3’’12’ 15. Given myvar = 'hello' , how would you return myvar as uppercase? Answers len(myvar)myvar.find(‘hello’)myvar.upper() 16. What is the result of the following : str(1+1) ? Answers ‘2’’11’ 17. What is the result of the following: "ABC".replace("AB", "ab") ? Answers ‘abC’‘ABc’ 18. In Python 3, what is the type of the variable x after the following: x=1/1 ? Answers floatint Previous Share the love 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 You Might Also Like Week 1 – Introduction to Unity python data structures coursera week 3 quiz answers Week 4 – Network traffic and logs using ids and siem tools – Shuffle Q/A 1 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.