What are the different types of methodologies?
No Answer is Posted For this Question
Be the First to Post Answer
What exactly is java?
What are the legal operands of the instanceof operator?
Difference between serialization and deserialization in java?
Write a java program to find the route that connects between Red and Green Cells. General Rules for traversal 1. You can traverse from one cell to another vertically, horizontally or diagonally. 2. You cannot traverse through Black cells. 3. There should be only one Red and Green cell and at least one of each should be present. Otherwise the array is invalid. 4. You cannot revisit a cell that you have already traversed. 5. The maze need not be in the same as given in the above example
Write a program to calculate factorial in java?
How GUI component handle its own events?
Can interface be private in java?
From the two, which would be easier to write: synchronization code for ten threads or two threads?
What is the best definition for data?
Given: 10. interface A { void x(); } 11. class B implements A { public void x() { } public voidy() { } } 12. class C extends B { public void x() {} } And: 20. java.util.List list = new java.util.ArrayList(); 21. list.add(new B()); 22. list.add(new C()); 23. for (A a:list) { 24. a.x(); 25. a.y();; 26. } What is the result? 1 Compilation fails because of an error in line 25. 2 The code runs with no output. 3 An exception is thrown at runtime. 4 Compilation fails because of an error in line 20.
Is a method a function?
What is the differences between heap and stack memory in java? Explain