Question: Question 10 Not yet answered Will this code compile without error? interface Test { abstract public void someMethod() throws Exception; } Marked out of 1.00

Question 10 Not yet answered Will this code compile without error? interface Test { abstract public void someMethod() throws Exception; } Marked out of 1.00 Flag question a. NO b. YES Will this code compile? Question 11 Not yet answered Marked out of 1.00 public class Test{ public int count(int i) { return 0; } } Flag question class TestChild extends Test{ public int count(long i) throws Exception{ return 0; } } a. Yes b. No Question 12 Not yet answered What will happen when you compile and run the following code? public class Test{ Marked out of 1.00 public void doNothing (Object object){ System.out.println("Object"); } Flag question public void doNothing (String string){ System.out.println("String"); } public static void main(String[] args) { Test test = new Test(); test.doNothing(args); } } a. Compilation error b. No output c. String d. Object
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
