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 a ternary operator in java?
What is the difference between method and means?
When is the finalize() called? What is the purpose of finalization?
What are the core java topics?
Why do we create threads in java?
what is predefined function in java?
what is mean by synchronization?
3 Answers BOB Technologies, GCPL,
Can we access private data outside of the class directly in java programming language? Why There is no runtime checking in java, which leads to access the private data directly outside of a class?
What are methods?
write java code to print second max number in the array
what is the difference between static block and static method
What is the immediate superclass of Menu?