class Simple{  
    public static void main(String [] args){  
         System.out.println("Hello Java");  
    }  
}
Running this program using command prompt:
javac Simple.java - compiled it successfully,
java Simple - shows error "Error: Could not find or load main class simple"
What are the reasons for showing this error?
I have set,
JAVA_HOME - C:\Program Files\Java\jdk1.8.0_241, 
path- %JAVA_HOME%\bin, 
CLASSPATH - C:\Program Files\Java\jdk1.8.0_241\bin
 
    