| Title | Topics | Action | |||
|---|---|---|---|---|---|
| 4 | Greeter ClassCreate a class `Greeter` with a method `Greet(string name)` that RETURNS the str... | easy | ○ Not Started | Classes | Solve |
| 204 | Counter ClassCreate a class `Counter` with a private int field (starting at 0), an `Increment... | easy | ○ Not Started | Classes | Solve |
| 205 | Person ClassCreate a class `Person` with a constructor that takes a name and an age, and a `... | easy | ○ Not Started | Classes | Solve |
| 206 | Bank Account DepositCreate a class `BankAccount` with a constructor that sets the starting balance, ... | easy | ○ Not Started | Classes | Solve |
| 207 | Dog ClassCreate a class `Dog` with a constructor that takes a name (stored in a public `N... | easy | ○ Not Started | Classes | Solve |
| 208 | Point ClassCreate a class `Point` with a constructor taking x and y, and a `ToText()` metho... | easy | ○ Not Started | Classes | Solve |
| 209 | Light SwitchCreate a class `LightSwitch` with a private bool (starting false), a `TurnOn()` ... | easy | ○ Not Started | Classes | Solve |
| 210 | Rectangle Perimeter ClassCreate a class `Rectangle` with a constructor taking width and height and a `Per... | easy | ○ Not Started | Classes | Solve |
| 211 | Box Volume ClassCreate a class `Box` with a constructor taking length, width, and height, and a ... | easy | ○ Not Started | Classes | Solve |
| 212 | Temperature ClassCreate a class `Temperature` with a constructor taking a Celsius value and a `To... | easy | ○ Not Started | Classes | Solve |
| 213 | Student ClassCreate a class `Student` with a constructor taking a name and a score, plus `Get... | easy | ○ Not Started | Classes | Solve |
| 214 | Accumulator ClassCreate a class `Accumulator` with a running total (starting 0), an `Add(int n)` ... | easy | ○ Not Started | Classes | Solve |
| 215 | Greeter With NameCreate a class `NamedGreeter` whose constructor stores a name, and a `Greet()` m... | easy | ○ Not Started | Classes | Solve |
| 216 | Square ClassCreate a class `Square` with a constructor taking the side length and an `Area()... | easy | ○ Not Started | Classes | Solve |
| 217 | Toggle ClassCreate a class `Toggle` with a private bool (starting false) and a `Flip()` meth... | easy | ○ Not Started | Classes | Solve |
| 218 | Multiplier ClassCreate a class `Multiplier` whose constructor stores a factor, and an `Apply(int... | easy | ○ Not Started | Classes | Solve |
| 5 | Rectangle ClassCreate a class `Rectangle` with a constructor that takes a width and a height (i... | medium | ○ Not Started | Classes | Solve |
| 219 | Override ToStringCreate a class `Person` with a name and age, and OVERRIDE `ToString()` to return... | medium | ○ Not Started | Classes | Solve |
| 220 | Counter with ResetCreate a class `Counter` with `Increment()`, `Reset()` (sets the count back to 0... | medium | ○ Not Started | Classes | Solve |
| 221 | Independent InstancesUsing your `Counter` class (a private count, `Increment()`, `GetCount()`), the t... | medium | ○ Not Started | Classes | Solve |
| 222 | Bank Account with WithdrawCreate a class `BankAccount` with a starting balance, `Deposit(amount)`, `Withdr... | medium | ○ Not Started | Classes | Solve |
| 223 | Timer ClassCreate a class `Timer` that starts at 0 seconds, with a `Tick(int seconds)` meth... | medium | ○ Not Started | Classes | Solve |
| 224 | Fraction ClassCreate a class `Fraction` with a numerator and denominator, a `Multiply(Fraction... | hard | ○ Not Started | Classes | Solve |
| 225 | Stack ClassCreate a class `IntStack` backed by a `List<int>` with `Push(int n)`, `Pop()` (r... | hard | ○ Not Started | Classes | Solve |
| 226 | Roster ClassCreate a class `Roster` backed by a `List<string>` with an `Add(string name)` me... | hard | ○ Not Started | Classes | Solve |