Java Programming and Technical

Q. What is nested class?

A. If all the methods of a inner class is static then it is a nested class

Read Solution (Total 3)

Java Other Question

Q. What is JIT and its use?

A. Really, just a very fast compiler In this incarnation, pretty much a one-pass compiler - no offline computations. So you can't look at the whole method, rank the expressions according to which ones are re-used the most, and then generate code. In theory terms, it's an on-line problem
Q. What is HashMap and Map?

A. Map is Interface and Hashmap is class that implements that.