September 2018
Intermediate to advanced
802 pages
19h 30m
English
"Hello World" String msg = "Hello, %s. Good Morning" System.out.println(String.format(msg, "Friend")) int someInt = 10 boolean someBool = false if ( someBool ) { System.out.println("True block executed"); } if ( someBool ) { System.out.println("True block executed"); }else{ System.out.println("False block executed"); } for ( int i = 0; i < 10; i++ ){ System.out.println("I is : " + i ); }
You will get the following output:

Read now
Unlock full access