Why java is a platform independent? Explain
No Answer is Posted For this Question
Be the First to Post Answer
Is vector ordered in java?
What are multiple inheritances?
Describe what a thread-local variable is in java?
How strings are created in java?
Can a constructor be made final?
class A { private int i; } class B extends A { private int i; } if I create an object of B class what will be the memory of that object.
What are the advantages of unicode?
How to overcome the exception object reference not set to an instance of object?
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
what is the purpose of using rmisecuritymanager in rmi?
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?
Does java initialize arrays to zero?