WPM
100
CPM
100
Errors
0
Time
15Min
Accuracy
100%
Start Java code typing Practice. Java Main Methods Static Methos, Creating Objects in Java, Thread Using Runnable Interface, Reverse String Using Loop and Input From User in Java.Click on the area below to start typing.

S.No.Paragraph : Practice repeatedly whatever you would like most for full fifteen minutes Lessionsclick to Practice
1//To create a thread using runnable, use the following code- public class ExampleClass implements Runnable { @Override public void run() { System.out.println("Thread has ended"); } public static void main(String[] args) { ExampleClass ex = new ExampleClass(); Thread t1= new Thread(ex); t1.start(); System.out.println("Hi"); } }1.3 a thread using Runnable interface in java