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 is the synchronized method modifier?
What is finally and finalize in java?
How garbage collection is done in java?
Program to output as below formate: 1 2 3 4 5 6 7 8 9 10
Which containers may have a MenuBar?
What is method overloading and method overriding?
Given a singly linked list, find the middle of the list in a single traversal without using temporary variable.
Differentiate between == and equals().
What is the purpose of the System class?
What is the difference between an argument and a parameter?
How do you remove duplicates in java?
what do you mean by classloader in java?