What will be the output of the following code? class MyThre…
What will be the output of the following code? class MyThread extends Thread { public void run() { System.out.print(“A “); } public static void main(String[] args) { MyThread t = new MyThread(); t.run(); System.out.print(“B “); } }
Read Details