Answer (Choose 1 answer)
What does the following function do
def Func(self, root):
if root:
self. Func (root.left)
print(root.data)self. Func (root.right)
A. Traverse the tree in Pre-order
B. Traverse the tree in In-order
C. Traverse the tree in DFT
D. Traverse the tree in BFT
Exit 26