Show the 4 steps
- Create the project you are going to build
Create the public project where your Student Management System will live, and get back the link you will use for the rest of this journey.
- What Java is and what runs it
Explain in your own words what the JDK, the JVM and bytecode each are, and which one you are about to install.
- Install and prove the JDK
Install the Java 21 JDK and confirm from a newly opened terminal that both `java --version` and `javac --version` report 21.
- Your first program, compiled and run
Write, compile and run a Java program that prints a student profile, and read the compiler’s message when you break it on purpose.