Correct Answer : C
In order to modify a program first make the necessary changes. For the changes to get reflected in the file, we need to save the file. Then compile the program to get the new bytecode. Now that new .class file is created, run it.
To compile: javac filename.java
To run: java filename
NOTE: For making compilation and running file easier, use same name for the file and the class.