What are the traverses in Binary Tree?
Answer Posted / 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 |
Post New Answer View All Answers
Is an empty arraylist null?
If system.exit (0); is written at the end of the try block, will the finally block still execute?
What is method overriding in java ?
What are streams?
What is thread safe singleton?
How can I debug the Java security exceptions and AccessControlExceptions?
Define inheritance with reference to java.
How do generics work?
What is a hashmap used for?
What happens when a thrown exception is not handled?
What is boolean strategy?
What is int lol?
How do you escape in java?
How is string stored in java?
Is java a super set of javascript?