InterviewSolution
Saved Bookmarks
| 1. |
Which of the following has the highest memory requirement?(a) Heap(b) Stack(c) JVM(d) ClassI had been asked this question at a job interview.Question is taken from Heap and Garbage Collection in chapter Classes and Methods of Java |
|
Answer» CORRECT ANSWER is (c) JVM For EXPLANATION: JVM is the super SET which contains HEAP, stack, objects, pointers, etc. |
|