Quiz 2

Test what you have learnt so far.

We'll cover the following...

Question # 1

Consider the below setup:

from threading import Condition
from threading import Thread
from threading import current_thread

flag = False

cond_var = Condition()


def child_task():
    global flag
    name =
...