InterviewSolution
Saved Bookmarks
| 1. |
What does load(String)::= function do, in System class?(a) Loads dynamic library for a path name(b) Loads all the dynamic libraries(c) Loads all the Number in string format(d) Loads the processor with calculations |
|
Answer» Right answer is (a) Loads dynamic library for a path name Explanation: Only the specified path named dynamic libraries are loaded. All the dynamic libraries can’t be loaded at a time. Hence we use this function for specific libraries. |
|