-
-
-
-
-
What is the priority of the Garbage collector thread of jdk.?
A) low-priorityB) highest priorityC) medium priorityD) decided at runtime
-
-
-
-
-
-
-
-
-
How to convert .class to .java?
How to convert or achieve the program from .class file??
-
In Java, if main method call any other method then that method must be_________
1) Private
2) Recursive
3) Static
4) void -
In Java, Package does not contain__________
1) Class
2) Package
3) Interfaces
4) Objects -
-
Core Java Question
Will it compile and run?? If No ... please explain?
java
public class Test{
public static void main(String asd[]){
System.out.println(" Test!! ");
}
}
protected class A{
}
private class B extends A{
}
-
Coding question
Given the age of 10 couples(husband and wife), print Number of years of age difference for all the 10 people Input Specification First 10 inputs contain the ages of all husbands And the next 10 are the ages of all wives Output Specification Output should be exactly 10 lines giving the number of years of the age difference between them. Note: output is a positive integer Sample Input 50 40 53 24 78...
Can a lock be acquired on a class
Yes, a lock can be acquired on a class. This lock is acquired on the class's Class object..
Ans