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
1class Demo{ static{ //static block System.out.println("Static block"); } public static void main(String args[]){ //static method System.out.println("Static method"); } } //A program that does not have the main() method gives an error at run time. class DemoStaticBlock{ Static{ //static block System.out.println("Static block"); } }1.1 java main method and static method