YouTube Icon

Interview Questions.

Top 100+ Java Memory Management Interview Questions And Answers - May 31, 2020

fluid

Top 100+ Java Memory Management Interview Questions And Answers

Question 1. What Does The Statement “memory Is Managed In Java” Mean?

Answer :

Memory is the key aid an application requires to run correctly and prefer any resource, it's far scarce. As such, its allocation and deal area to and from programs or distinctive components of an application require quite a few care and attention.
However, in Java, a developer does now not need to explicitly allocate and deallocate memory – the JVM and extra especially the Garbage Collector – has the duty of dealing with reminiscence allocation so that the developer doesn’t need to.
This is opposite to what occurs in languages like C wherein a programmer has direct access to memory and actually references reminiscence cells in his code, developing a variety of room for memory leaks.
Question 2. What Is Garbage Collection And What Are Its Advantages?

Answer :

Garbage series is the system of searching at heap memory, identifying which gadgets are in use and which aren't, and deleting the unused items.
An in-use item, or a referenced object, method that some a part of your program nevertheless keeps a pointer to that item. An unused item, or unreferenced object, is not referenced by way of any part of your program. So the reminiscence utilized by an unreferenced item can be reclaimed.
The biggest gain of rubbish collection is that it eliminates the load of manual memory allocation/deal location from us in order that we are able to cognizance on solving the hassle handy.
Adv Java Interview Questions
Question three. Are There Any Disadvantages Of Garbage Collection?

Answer :

Yes. Whenever the rubbish collector runs, it has an impact at the utility’s overall performance. This is because all different threads within the software ought to be stopped to permit the rubbish collector thread to efficiently do its work.
Depending on the requirements of the utility, this will be a actual hassle this is unacceptable by using the patron. However, this hassle may be significantly reduced or even removed thru skillful optimization and rubbish collector tuning and using exclusive GC algorithms.
Question 4. What Is The Meaning Of The Term “forestall-the-international”?

Answer :

When the garbage collector thread is jogging, different threads are stopped, which means the application is stopped momentarily. This has similarities to house cleaning or fumigation where occupants are denied get admission to until the manner is whole.

Depending on the wishes of an application, “stop the world” rubbish collection can reason an unacceptable freeze. This is why it's far crucial to do rubbish collector tuning and JVM optimization so that the freeze encountered is at the least appropriate.

Adv Java Tutorial
Question five. What Are Stack And Heap? What Is Stored In Each Of These Memory Structures, And How Are They Interrelated?

Answer :

The stack is part of reminiscence that incorporates facts about nested technique calls down to the modern-day role within the program. It also contains all local variables and references to gadgets at the heap defined in presently executing methods.
This shape allows the runtime to return from the approach understanding the deal with whence it turned into known as, and additionally clean all neighborhood variables after exiting the method. Every thread has its very own stack.
The heap is a large bulk of reminiscence intended for allocation of items. When you create an item with the new keyword, it receives allotted at the heap. However, the connection with this item lives on the stack.
J2EE Interview Questions
Question 6. What Is Generational Garbage Collection And What Makes It A Popular Garbage Collection Approach?

Answer :

Generational rubbish collection may be loosely defined as the approach used by the rubbish collector wherein the heap is split into a number of sections referred to as generations, every of in order to preserve objects in line with their “age” on the heap.
Whenever the rubbish collector is walking, the first step in the procedure is called marking. This is in which the rubbish collector identifies which portions of memory are in use and which are not. This may be a very time-ingesting technique if all objects in a machine need to be scanned.
As increasingly more objects are allocated, the listing of items grows and grows leading to longer and longer garbage series time. However, empirical analysis of applications has shown that maximum items are brief-lived.
With generational garbage collection, items are grouped consistent with their “age” in phrases of how many rubbish collection cycles they have survived. This manner, the bulk of the work unfold throughout various minor and predominant series cycles.
Today, nearly all rubbish collectors are generational. This approach is so famous because, over the years, it has tested to be the most reliable answer.
Question 7. Describe In Detail How Generational Garbage Collection Works?

Answer :

To well recognize how generational rubbish collection works, it's far important to first bear in mind how Java heap is based to facilitate generational garbage collection.
The heap is divided up into smaller areas or generations. These areas are Young Generation, Old or Tenured Generation, and Permanent Generation.
The young technology hosts most of the newly created items. An empirical examine of maximum packages suggests that majority of gadgets are quick short lived and consequently, quickly emerge as eligible for collection. Therefore, new objects begin their adventure here and are only “promoted” to the old era area after they have attained a positive “age”.
The time period “age” in generational garbage series refers to the variety of collection cycles the object has survived.
The young technology area is in addition divided into three spaces: an Eden area and two survivor areas such as Survivor 1 (s1) and Survivor 2 (s2).
The antique technology hosts objects that have lived in reminiscence longer than a positive “age”. The objects that survived rubbish collection from the younger technology are promoted to this space. It is generally larger than the younger generation. As it is larger in size, the garbage series is greater highly-priced and happens less often than inside the younger era.
The everlasting generation or extra normally referred to as, PermGen, contains metadata required through the JVM to describe the lessons and strategies used within the software. It also consists of the string pool for storing interned strings. It is populated by the JVM at runtime based totally on classes in use by the software. In addition, platform library training and techniques may be stored here.
First, any new items are allocated to the Eden space. Both survivor areas start out empty. When the Eden area fills up, a minor rubbish collection is caused. Referenced gadgets are moved to the primary survivor area. Unreferenced items are deleted.
During the next minor GC, the equal component occurs to the Eden area. Unreferenced items are deleted and referenced gadgets are moved to a survivor area. However, in this example, they are moved to the second one survivor space (S1).
In addition, objects from the final minor GC within the first survivor area (S0) have their age incremented and are moved to S1. Once all surviving gadgets were moved to S1, each S0 and Eden space are cleared. At this point, S1 consists of items with extraordinary a while.
At the subsequent minor GC, the same technique is repeated. However this time the survivor areas switch. Referenced items are moved to S0 from both Eden and S1. Surviving items are elderly. Eden and S1 are cleared.
After each minor rubbish series cycle, the age of each item is checked. Those that have reached a positive arbitrary age, for instance, eight, are promoted from the young era to the antique or tenured technology. For all subsequent minor GC cycles, items will remain promoted to the antique era area.
This pretty an awful lot exhausts the procedure of garbage series within the young technology. Eventually, a primary rubbish collection can be accomplished at the vintage era which cleans up and compacts that area. For every important GC, there are numerous minor GCs.
J2EE Tutorial Core Java Interview Questions
Question eight. When Does An Object Become Eligible For Garbage Collection? Describe How The Gc Collects An Eligible Object?

Answer :

An item will become eligible for Garbage collection or GC if it isn't available from any stay threads or by any static references.
The maximum honest case of an object becoming eligible for garbage series is if all its references are null. Cyclic dependencies with none stay outside reference also are eligible for GC. So if object A references object B and item B references Object A and that they don’t have any other stay reference then each Objects A and B might be eligible for Garbage series.
Another obvious case is while a determine item is ready to null. When a kitchen object internally references a fridge item and a sink item, and the kitchen item is set to null, both fridge and sink becomes eligible for rubbish series along their figure, kitchen.
Question nine. How Do You Trigger Garbage Collection From Java Code?

Answer :

You, as Java programmer, cannot pressure garbage collection in Java; it will simplest cause if JVM thinks it desires a garbage series based totally on Java heap length.

Before removing an object from reminiscence garbage series thread invokes finalize()method of that item and gives an opportunity to carry out any form of cleanup required. You also can invoke this approach of an object code, however, there is no guarantee that rubbish series will arise while you call this method.

Additionally, there are strategies like System.Gc() and Runtime.Gc() which is used to ship request of Garbage series to JVM however it’s no longer assured that garbage collection will show up.

JSP Interview Questions
Question 10. What Happens When There Is Not Enough Heap Space To Accommodate Storage Of New Objects?

Answer :

If there is no reminiscence space for developing a new object in Heap, Java Virtual Machine throws OutOfMemoryError or greater specifically java.Lang.OutOfMemoryError heap space.

Core Java Tutorial
Question 11. Describe Strong, Weak, Soft And Phantom References And Their Role In Garbage Collection?

Answer :

Much as reminiscence is managed in Java, an engineer may additionally want to carry out as tons optimization as feasible to limit latency and maximize throughput, in important applications. Much as it is impossible to explicitly manipulate when rubbish series is induced within the JVM, it's miles possible to persuade the way it happens as regards the gadgets we've created.

Java provides us with reference items to govern the connection between the objects we create and the garbage collector.

By default, every object we create in a Java program is strongly referenced by using a variable:

StringBuilder sb = new StringBuilder();

In the above snippet, the new key-word creates a new StringBuilder object and stores it on the heap. The variable sb then stores a strong reference to this object. What this indicates for the rubbish collector is that the precise StringBuilder object isn't eligible for collection at all because of a robust reference held to it by means of sb. The story best modifications while we nullify sb like this:

sb = null;

After calling the above line, the item will then be eligible for series.

We can trade this dating among the item and the garbage collector by way of explicitly wrapping it inner some other reference item that's placed inner java.Lang.Ref bundle.

A soft reference may be created to the above object like this:

StringBuilder sb = new StringBuilder();

SoftReference<StringBuilder> sbRef = new SoftReference<>(sb);

sb = null;

In the above snippet, we've created two references to the StringBuilder item. The first line creates a robust reference sb and the second line creates a tender reference sbRef. The 0.33 line must make the object eligible for collection however the garbage collector will put off gathering it because of sbRef.

The tale will most effective trade whilst reminiscence will become tight and the JVM is on the point of throwing an OutOfMemory blunders. In different phrases, objects with handiest gentle references are collected as a remaining inn to get better memory.

A weak reference can be created in a similar manner the use of Weak Reference magnificence. When sb is about to null and the StringBuilder item handiest has a vulnerable reference, the JVM’s rubbish collector could have in reality no compromise and right now gather the item at the very subsequent cycle.

A phantom reference is much like a susceptible reference and an object with simplest phantom references could be amassed with out ready. However, phantom references are enqueued as soon as their gadgets are accumulated. We can ballot  the reference queue to recognize exactly while the object changed into amassed.

Java-Springs Interview Questions
Question 12. Suppose We Have A Circular Reference (two Objects That Reference Each Other). Could Such Pair Of Objects Become Eligible For Garbage Collection And Why?

Answer :

Yes, a pair of gadgets with a round reference can emerge as eligible for garbage collection. This is because of how Java’s garbage collector handles round references. It considers gadgets live not once they have any reference to them, however while they may be reachable through navigating the object graph starting from a few rubbish collection root (a nearby variable of a stay thread or a static subject). If a couple of objects with a circular reference is not on hand from any root, it is considered eligible for rubbish series.

Adv Java Interview Questions
Question 13. How Are Strings Represented In Memory?

Answer :

A String example in Java is an object with two fields: a char[] fee discipline and an int hash discipline. The fee subject is an array of chars representing the string itself, and the hash discipline contains the hashCode of a string which is initialized with zero, calculated during the first hashCode() call and cached ever due to the fact. As a curious edge case, if a hashCode of a string has a zero cost, it has to be recalculated whenever the hashCode() is referred to as.

Important component is that a String instance is immutable:

you may’t get or modify the underlying char[] array. Another function of strings is that the static constant strings are loaded and cached in a string pool.
If you have got more than one same String items in your source code, they may be all represented via a single example at runtime.
JSP Tutorial
Question 14. What Is A Stringbuilder And What Are Its Use Cases? What Is The Difference Between Appending A String To A Stringbuilder And Concatenating Two Strings With A + Operator? How Does Stringbuilder Differ From Stringbuffer?

Answer :

StringBuilder permits manipulating man or woman sequences via appending, deleting and inserting characters and strings. This is a mutable statistics shape, rather than the String magnificence that is immutable.
When concatenating two String instances, a new object is created, and strings are copied. This should bring a big garbage collector overhead if we need to create or regulate a string in a loop. StringBuilder allows dealing with string manipulations much greater effectively.
StringBuffer isn't like StringBuilder in that it's far thread-safe. If you need to manipulate a string in a single thread, use StringBuilder as an alternative.
Question 15. Is It Possible To «resurrect» An Object That Became Eligible For Garbage Collection?

Answer :

When an item will become eligible for garbage collection, the GC has to run the finalize approach on it. The finalize technique is assured to run simplest as soon as, as a result the GC flags the object as finalize and offers it a rest until the subsequent cycle.
In the finalize technique you could technically “resurrect” an object, as an instance, by means of assigning it to a static discipline. The item would turn out to be alive once more and non-eligible for rubbish series, so the GC might not collect it during the next cycle.
The item, however, might be marked as finalized, so while it might become eligible again, the finalize technique could now not be referred to as. In essence, you can turn this “resurrection” trick most effective once for the lifetime of the object. Beware that this ugly hack should be used simplest if you absolutely understand what you’re doing — however, information this trick offers some perception into how the GC works.
JMS(Java Message Service) Interview Questions




CFG