Kizspy | Question: 7
(Choose 1 answer)
BUDVERFUM Com
What does the following function do
def Func(self, root):
if root:
print(root.data)
self. Func (root.left)
self. Func (root.right)
A. Traverse the tree in Pre-order
B. Traverse the tree in Post-order
C. Traverse the tree in In-order
D. Traverse the tree in BFT