Python Quiz: Day 1 Nihareeka IT Club day 1 quiz........ Python training Which of the following statements is true? Python is a high level programming language. Python is an interpreted language. Python is an object-oriented language. All of the above. What is used to define a block of code (body of loop, function etc.) in Python? Curly braces Parenthesis Indentation Quotation Which of the following is correct? Comments are for programmers for better understanding of the program. Python Interpreter ignores comment. You can write multi-line comments in Python using triple quotes, either ''' or """. All of the above Which of the following is correct? Variable name can start with an underscore. Variable name can start with a digit. Keywords cannot be used as a variable name. Variable name can have symbols like: @, #, $ etc. Next In the following code, n is a/an _______? >>> n='5' integer string tuple ope...