Arrange the following program such that it compiles and prints I Love Java. Unselect any unwanted statements using the check box.
![]() |
{ Public static void Main(String args[]) { System.out.println("i love java"); } } |
![]() |
{ public static void main(String s[]) { System.out.println("I Love Java"); } } |
![]() |
{ Public Static Void Main() { System.out.println("I Love Java"); } } |
![]() |
class PrintJava |
Topic: Java Sample Program - Simple Hello World Program In Java