We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b211e1 commit d25c850Copy full SHA for d25c850
README.md
@@ -94,6 +94,10 @@
94
* What are these `final`, `finally` and `finalize`?
95
* What is memory leak and how does Java handle it?
96
* What is garbage collector? How it works?
97
+ -All objects are allocated on the heap area managed by the JVM.
98
+ As long as an object is being referenced, the JVM considers it alive.
99
+ Once an object is no longer referenced and therefore is not reachable by the application code,
100
+ the garbage collector removes it and reclaims the unused memory.
101
* Arrays vs ArrayLists.
102
* HashSet vs TreeSet.
103
* Typecast in Java.
@@ -303,4 +307,4 @@
303
307
```
304
308
305
309
### Contributing to Android Interview Questions
306
-Just make pull request. You are in!
310
+Just make pull request. You are in!
0 commit comments