Which command is utilized to run a Java program through interpretation?
Explanation
The 'java' command executes Java bytecode by interpreting it. 'javac' compiles Java source code into bytecode, while 'javap' disassembles class files. Therefore, 'java' is the correct choice for interpreting and running Java programs.