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