What are the traverses in Binary Tree?

Answers were Sorted based on User's Feedback



What are the traverses in Binary Tree?..

Answer / firewithin

Inorder
Preorder
PostOrder

Is This Answer Correct ?    16 Yes 0 No

What are the traverses in Binary Tree?..

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

Post New Answer

More Core Java Interview Questions

What is Garbage Collection in Java

0 Answers   Wipro,


what is multi-tasking

3 Answers   Anand Group, Photon Infotech, Tech Mahindra,


What is character in data type?

0 Answers  


what is object type casting? give some example with related?

2 Answers   HP, SparkTG,


what is the diffrence between class and object?

5 Answers  






public class Test { public static void main(String ar[]) { Integer a = 10; Integer b =10; Integer c = 145; Integer d = 145; System.out.println(a==b); System.out.println(c==d); } }

7 Answers   iGate,


What do you mean by byte code?

0 Answers  


What is cr keyboard?

0 Answers  


What are the names of Component subclasses that support painting?

1 Answers  


What is the importance of static variable?

0 Answers  


What is meant by object?

0 Answers  


When do you get classcastexception?

0 Answers  


Categories