Given a binary tree root node and a level, display all the nodes present in that level.Example:Nodes at level 1 are : 16Nodes at level 2 are : 10, 25Nodes at level 3 are : 7, 15, 18, 30Solution: This problem can be solved by recursive traversal.If the level is 1, print the node value.Recursively call the function for the left and right nodes with level reduced by 1.C++ code example provided to demonstrate the solution.Output: Nodes at level 2 are 10, 25