8. Which environment variable is used to set the java path? a) MAVEN_Path b) JavaPATH c) JAVA d) JAVA_HOME View Answer 9. What will be the output of the following Java program? classoutput{ publicstaticvoidmain(Stringargs[]) { doublea, b,c; a=3.0/0; b=0/4.0; c=0/0.0; Sys...