+91-85006-22255
What will be the output of the following program?
public class TestRunMethod extends Thread{ public static void main(String[] args) { TestRunMethod t = new TestRunMethod(); t.start(); t.start(); } public void run() { System.out.println("test"); }}
Topic: What is Multitasking and Multithreading?
Read this topic Take test on this topic
Open In App