InterviewSolution
Saved Bookmarks
| 1. |
Can You Identify The Errors In The Below Code? Interface I { Class C Implements I { Public Void Method(int I) { System.out.println(i); } } Void Method(int I); } |
|
Answer» No ERRORS. No errors. |
|