While the initial exercise (7.2.8) focuses on the list creation, the follow-up exercise ( 7.2.9 Teacher Class List Methods ) often requires adding methods to retrieve or print the list. Ensure your printClassList() method correctly iterates through the classList to return or display names.
Problem: Looking only at the percentage correct (e.g., 70%). Solution: Look at the BEST Level (e.g., Level 2 vs Level 3). A student with 71% might be Level 2 (Not Met) if the cut score for mastery is 75%. Percentiles lie; proficiency levels do not. 7.2.8 Teacher Class List BEST
The primary goal of 7.2.8 is to teach students how to maintain a central record of every object created from a specific class. By implementing a ArrayList, the list belongs to the class itself rather than any individual student, allowing it to store data that is shared across all instances. Step-by-Step Implementation Guide While the initial exercise (7