...

/

Quick Quiz on Modules and Functions

Quick Quiz on Modules and Functions

We'll cover the following...
1

What is the output of the following function?

def function(fruit = "Orange"):
  print("I like " + fruit)

function("Banana")
function("Peach")
function()
function("Mango") 
A)
I like Banana
I like Peach
I like Orange
I like Mango
B)
I like Banana
I like Peach
I like Peach
I like Mango
C)
I like Banana
I like Peach
I like Mango
Question 1 of 30 attempted

Now that ...

Access this course and 1400+ top-rated courses and projects.