choose the right option after tracing the code given below in the snippet.
public static void main(String[] args) throws  
Exception {
Thread f = new Thread();
f.start();
System.out.print("B");
f.wait(1000);
System.out.print("K");
}

Posted on by