InterviewSolution
Saved Bookmarks
| 1. |
How Do You Access Interface Field ‘i’ In The Below Code? Class P { Interface Q { Int I = 111; } } |
|
Answer» P.Q.i P.Q.i |
|