N-Ary tree can be traversed just like a normal tree. We just have to consider all childs of a given node and recursively call that function on every node.
Depth of an N-Ary tree: https://www.geeksforgeeks.org/depth-n-ary-tree/