InterviewSolution
Saved Bookmarks
| 1. |
What can be done to monitor the memory usage?(a) Profiling(b) Sequencing(c) Serializing(d) Serializing & Sequencing |
|
Answer» Correct answer is (a) Profiling The best explanation: Garbage collected languages help developers manage memory by periodically checking which previously allocated pieces of memory can still be “reached” from other parts of the application. Profiling allows us to monitor our memory usage. |
|