public class Worker extends Thread { public void run() { System.out.print("N"); } public static void main(String [] args) { Thread worker = new Worker(); worker.run(); System.out.print("O"); } }
Reveal answer
Fill a bubble to check yourself