Review hints for all assignments on Google Drive · Click any assignment to preview the task
Create a tree using print and println methods in Java — no user input required.
🎯 Skill: Composing output character by character with print vs printlnGet user input, store values in variables, perform arithmetic operations, and display the results.
🎯 Skill: Scanner input → variable storage → arithmetic → outputWork with the modulus operator to calculate and display output — understanding remainders and integer division.
🎯 Skill: Using % to extract digits, convert units, detect even/oddWrite programs using if-statements and switch statements to produce output based on certain criteria.
🎯 Skill: Routing program logic based on conditions and matched valuesUse if-statements, switch statements, while and for loops together to produce output based on combined criteria.
🎯 Skill: Combining iteration with conditional logic inside a loop bodyWrite a collection of methods that perform statistical analysis on a series of numbers — each operation is its own method.
🎯 Skill: Breaking a problem into separate methods, passing data, returning resultsUse an array with grade-related methods to build a program that stores, processes, and reports student scores.
🎯 Skill: Storing data in arrays, iterating with a loop, calling methods to analyzeCreate a Circle class, then instantiate multiple circle objects and call methods to compute area and circumference.
🎯 Skill: Class blueprint → constructor → instance methods → multiple objects