Java Programming Language MCQ Java thread MCQ
⚠ Report ✓ Question Verified Copy Link
public class Test implements Runnable{ public static void main(String[] args){ Thread t = new Thread(this); t.start(); } public void run(){ System.out.println("test"); } }
Learn More MCQ Questions from Java Programming Language MCQ Java thread MCQ