Answer Posted / ranganathkini
static inner classes are nested class members marked by the
"static" keyword. These classes have access to the enclosing
class's static members but no access to the non-static
members of the enclosing class.
Static classes do not depend on an instance of their
enclosing class and hence they can be instantiated without
instantiating their enclosing class.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain the polymorphism principle?
What is the difference between inheritance and encapsulation?
What is a container in a gui?
what is the role of xml in core java?? and how we can use it?? can somebody give a sample program with explanation and from where i can read more about xml?????
What does s mean in regex?
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 bitwise complement?
What is ‘is-a ‘ relationship in java?
What is token in java?
Explain which of the following methods releases the lock when yield(), join(),sleep(),wait(),notify(), notifyall() methods are executed?
What are the classes of java?
Given a singly linked list, determine whether it contains a loop or not without using temporary space?
EDS (Electronic Data Systems India Pvt Ltd) at Chennai on 16-12-2006.
How to perform binary search in java?
Explain java coding standards for methods?