Multiple choice Declaring a class ______ prevents any unwanted extensions to the class. close terminate end final Reveal answer Fill a bubble to check yourself D Correct answer Explanation Declaring a class as 'final' prevents it from being subclassed. This is a common practice to ensure the integrity of a class by preventing unwanted extensions.