[ays_quiz id="3"]
Python Unit -1 Quiz Python Unit -1 Quiz Please Enter the quiz code to start The number of attempts remaining is 1 1 / 16 1. What will print(3 + 4 * 2) display? 14 7 10 11 2 / 16 2. Python is known as a: High‑level programming language Low‑level language Assembly language Machine language 3 / 16 3. Which statement is correct? Select all that apply print((This is my statement)) print "Hello How are you" print("This is my statement") print("Hello!","This is my statement") 4 / 16 4. Which of the following is a valid variable name in Python? value_1 value-1 @value 1value 5 / 16 5. What is the output? a=10 b=20 print(a+b) 40 20 10 30 6 / 16 6. What is the correct file extension for Python files? .pyt .py .pt .python 7 / 16 7. What will print(“A”, “B”, sep=”*”, end=”!”) display? A B! A*B Error A*B! 8 / 16 8. How to convert a variable from String to Decimal? using int(variable) using str(variable) using bool(variable) using float(variable) 9 / 16 9. In the statement a=input(“Enter Something”) what is the type(a)? str int bool float 10 / 16 10. name=input(“Enter your Name”) What is this statement do? Print output to the user Get value from the user Converts string to integer Gives compile-time error 11 / 16 11. 1. What is Python? None of the above Is a Programming Language Is a Snake Is a English Language 12 / 16 12. What needs to be coded to display output as: Line1 Line2 Line3 Check 13 / 16 13. What is the output? a=6 b=10 print(a>=b) False True 14 / 16 14. What is the output? a=6 b=10 print(a<=b and b<=10) False True 15 / 16 15. What is the output? a=5 a*=5 print(a) 45 5 50 25 16 / 16 16. What character is used for single line comment? & # ! $ Your score isThe average score is 0%