Data Structures | Tree Traversals | Question 12ReadDiscussCoursesPracticeImprove Article ImproveSave Article SaveLike Article LikeThe array representation of a complete binary tree contains the data in sorted order. Which traversal of the tree will produce the data in sorted form?(A) Preorder(B) Inorder(C) Postorder(D) Level orderAnswer: (D)Explanation: The level order traversal of a binary tree prints the data in the same order as it is stored in the array representation of a complete binary tree.Quiz of this QuestionRecommendedSolve DSA problems on GfG Practice.Solve ProblemsLast Updated : 28 Jun, 2021Like Article Save Article Please Login to comment...