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