What will be the output of the following program?
public class Madam extends Thread {
Madam() {
setName("Gowthami");
setPriority(MAX_PRIORITY);
}
public void run() {
System.out.println(Thread.currentThread());
}
public static void main(String[] args) {
Madam m = new Madam();
System.out.println("Thread alive? " + Thread.currentThread().isAlive());
m.start();
}
}