Answer:
To build the original tree follow the steps described below:
For more follow the diagram:
Explanation:
Preorder traversal visits the root of the tree first then the left sub-tree and then the right subtree.
Inorder traversal visits the left subtree first then the root and then the right subtree.