What are the traverses in Binary Tree?
Answers were Sorted based on User's Feedback
Answer / jack
In order... Left node, Root node, Right node
Pre order... Root node, Left node, Right node
Post order... Left node, Right node, Root node
| Is This Answer Correct ? | 8 Yes | 1 No |
What are the 8 data types in java?
What are instance variables?
What is a default constraint?
How to find the given number is a prime number or not by getting input from the user
What is ++ a in java?
what is d difference between deep cloning and shallow cloning in core java?
What is lexicographically smallest string?
Why do we need to override equals() and hascode() method of object class?
What do you mean by scope of variable?
Differentiate between a class and an object.
What is a layout manager?
Is array a class in java?