1.
In Java, which of the following does not stop the execution of a thread?
2.
Does the block finally get executed in the below code?
try {
    //some code
    System.exit();
} finally {
    //some code
}
3.
In Java, to create a new Map instance that has an iteration order not same as that of an existing Map instance, which concrete implementation of the Map interface should be used?
4.
Which collection class does not allow growing or shrinking of its size, provides indexed access to its elements, and whose methods are not synchronized?
5.
In Java, a marker interface is an interface having ________________________________.
6.
In Java, do virtual functions exist?
7.
In Java, which of the following collection classes associates values with keys?
8.
How is a Java program executed without the main() method?
9.
In Java, what are native methods?
10.
In Java, which of the following statements is true?