;C:\Program Files\Java\jdk1.8.0_65\bin
> pathCheck that the path you entered in Section C, Item 5 is included in the System Path.
> javaVarious usage options for Java will be shown.
> java -version java version "1.8.0_65" Java(TM) SE Runtime Environment (build 1.8.0_65-b17) Java HotSpot(TM) 64-Bit Server VM (build 25.65-b01, mixed mode)If this output is shown, you should see the three lines of output.
public class HelloWorld { public static void main(String[ ] args) { System.out.println("Hello, World!"); } }
> javac HelloWorld.java
> java HelloWorld Hello, world!If you see the program output as shown, you are ready to go with Java!