Question: Java help me quickly please What changes need to be made to the main method to avoid the compilation error. (1 Point) public class C


Java
help me quickly please
What changes need to be made to the main method to avoid the compilation error. (1 Point) public class C { static void ml (int x) throws Exception if(x ==0) throw new Exception(); else System.out.println("Correct"); } public static void main(String[] args) { ml (0) ; } } Solt: public static void main(String args) by Im 100:1 catch (Exception e) () Sol2: public static void main(Stringi args) throws Exception m1(0) Solt & Sol2 Sol3: public static void main(Stringl] args) m1(1):1 all of the above 9 Which of the following statements is not correct about inner class (1 Point) Unlimited number of inner classes can be defined Inner class can be used to create only one object Inner class has access to the data fields of the outer class Inner class can be private
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
