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 do you understand by the term polymorphism?
What is array pointers ?
What does function identity () do?
Explain the difference between static and dynamic binding in java?
What do you understand by the term string pool?
ublic class Java_Coding_Samples { public static void JavaHungr(NumberFormatException ae){ System.out.println("integer"); } public static void JavaHungry(Exception e){ System.out.println("string"); } public static void JavaHungry(ArithmeticException ae){ System.out.println("object"); } public static void main(String[] args) { JavaHungry(null); }
Which is a valid identifier?
Why string is not a wrapper class?
What is the difference between parameters and arguments ?
What is the name of the java compiler?
What is default size of arraylist in java?
What is not object oriented programming?