Multiple choice technology programming languages Which method is used to call Garbage Collection explicitly? Out.gc() System.gc() Print.gc() None of the above Reveal answer Fill a bubble to check yourself B Correct answer Explanation System.gc() is used to suggest garbage collection to the JVM, though it's only a recommendation - the JVM decides when to actually run the garbage collector based on memory pressure and other factors.