Multiple choice technology programming languages Can we invoke the garbage collector explicitly? Yes, but the actual collection is not deterministic No. Yes, and the actual collection is deterministic I don't know. Reveal answer Fill a bubble to check yourself A Correct answer Explanation Garbage collection can be requested explicitly using methods like System.gc() in languages like Java, but the runtime environment determines when and if actual collection occurs, making it non-deterministic.