Python Functions, Objects & Classes Quiz What is a class in Python? A loop that runs functions A blueprint for an object A collection of functions A built-in function What symbol is used to start the block of code inside a function in Python? () [] : {} In Python, which of the following is NOT a built-in function? print() sum() average() min() What analogy is used in the lecture to describe a class? A tree and its leaves A book and its chapters A construction map of a house A blueprint of a machine What is an object in Python? A blueprint for a class A function that stores data A collection of data (variables) and methods (functions) A method inside a function What will be the output of the following code? def say_hello(): print(‘Hello, Python!’) say_hello() say_hello Hello, Python! Error No output What is a class in Python? A type of function A blueprint for an object A set of built-in functions A function that stores variables Which of the following is an example of calling a function in Python? def greet() greet() call greet greet{} What is a function in Python? A pre-defined set of statements A block of code that runs automatically A block of code that runs only when called A loop structure Which of the following is a correct way to define a function in Python? def myFunction: def myFunction(): function myFunction(): define myFunction(): Loading …