Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.
What is the name of the thread in output of this program?
What is the name of the thread in output of this program?
class multithreaded_programing {
public static void main(String args[]) {
Thread t = Thread.currentThread();
System.out.println(t.isAlive());
}
}