Assignment
1. Describe how the Java Virtual Machine (JVM) enables a computer to run a java program. Give a specific example with a java code.
2. Explain the difference between Java Development Toolkit (JDK) and Java Runtime Environment (JRE).
3. Identify and correct the error(s) in the code below.
Public class HelloWorld
{
Public Static void Main(string [ ] Args)
{
System.Out.Println("Hello World");
}
}