Sail E0 Webinar
Question
In the code shown below, which function is the decorator?def mk(x):    def mk1():        print("Decorated")        x()    return mk1def mk2():    print("Ordinary")p = mk(mk2)p()
Options:
A .  p()
B .  mk()
C .  mk1()
D .  mk2()
Answer: Option B


In the code shown above, the function mk() is the decorator. The function which is getting decorated is mk2(). The return function is given the name p().



Was this answer helpful ?
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers