InterviewSolution
Saved Bookmarks
| 1. |
How many local classes can be defined inside a single function?(a) Only 1(b) Only 3(c) Only 5(d) As many as required |
|
Answer» Correct answer is (d) As many as required The explanation: The local classes can be defined as required. There is no restriction on the number of local classes that can be defined inside a function. But all those classes must follow the rules and restrictions. |
|