Pythondex

Quiz

Functions Quiz

Which keyword is used to define a function in Python?

function
def
fun
define

What will the following code output?

Hello
greet
None
Error

How can you pass arguments to a function?

Using parameters in function definition
Using return statement
Using global variables only
It is not possible

What will the following code output?

7
34
a + b
Error

Which statement about functions is TRUE?

Functions can only return integers
Functions must always return a value
Functions can return any data type or None
Functions cannot take parameters