InterviewSolution
Saved Bookmarks
| 1. |
Can You Identify The Error In The Below Code? Interface A { Private Int I; } |
|
Answer» ILLEGAL MODIFIER for field i. Only public, STATIC and FINAL are ALLOWED. Illegal modifier for field i. Only public, static and final are allowed. |
|