Please can you help to draw a Binary tree because I can't understand what it's goin on So here is an assignment question for the binary tree Assignment 11 Draw the tree that will result if you insert these nodes in this order: 50 40 45 30 35 43 47 20 21 60 55 53 54 57 70 65 80 Give the node order that will result if we user inorder traversal Give the node order that will result if we user preorder traversal Give the node order that will result if we user postorder traversal Draw the tree that will result if we delete node 20 from the tree drawn in #1. Draw the tree that will result if we delete node 45 from the tree drawn in #1. Draw the tree that will result if we delete node 40 from the tree drawn in #1. Draw the tree that will result if we delete node 50 from the tree drawn in #1.