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