InterviewSolution
Saved Bookmarks
| 1. |
What is not the advantage of Reflection?(a) Examine a class’s field and method at runtime(b) Construct an object for a class at runtime(c) Examine a class’s field at compile time(d) Examine an object’s class at runtime |
|
Answer» Right choice is (c) Examine a class’s field at compile time Explanation: Reflection inspects classes, interfaces, fields and methods at a runtime. |
|