| Title | Topics | Action | |||
|---|---|---|---|---|---|
| 129 | Square MethodComplete the static method `Square` so it returns its parameter multiplied by it... | easy | ○ Not Started | Methods | Solve |
| 130 | Cube MethodComplete the static method `Cube` so it returns its parameter to the third power... | easy | ○ Not Started | Methods | Solve |
| 131 | Add MethodComplete the static method `Add` so it returns the sum of its two parameters. Do... | easy | ○ Not Started | Methods | Solve |
| 132 | Subtract MethodComplete the static method `Subtract` so it returns the first parameter minus th... | easy | ○ Not Started | Methods | Solve |
| 133 | Max MethodComplete the static method `Max` so it returns the larger of its two parameters.... | easy | ○ Not Started | Methods | Solve |
| 134 | Min MethodComplete the static method `Min` so it returns the smaller of its two parameters... | easy | ○ Not Started | Methods | Solve |
| 135 | Is Even MethodComplete the static method `IsEven` so it returns true when its parameter is eve... | easy | ○ Not Started | Methods | Solve |
| 136 | Greeting Method (void)Complete the static method `Greet` so it PRINTS 'Hello, [name]!' on its own line... | easy | ○ Not Started | Methods | Solve |
| 137 | Absolute Value MethodComplete the static method `AbsValue` so it returns the absolute value of its pa... | easy | ○ Not Started | Methods | Solve |
| 138 | Sum To N MethodComplete the static method `SumTo` so it returns the sum of all integers from 1 ... | easy | ○ Not Started | Methods | Solve |
| 139 | Double It MethodComplete the static method `DoubleIt` so it returns its parameter times 2. Do NO... | easy | ○ Not Started | Methods | Solve |
| 140 | Is Positive MethodComplete the static method `IsPositive` so it returns true when its parameter is... | easy | ○ Not Started | Methods | Solve |
| 141 | Average of Two MethodComplete the static method `Average` so it returns the integer average of its tw... | easy | ○ Not Started | Methods | Solve |
| 142 | To Fahrenheit MethodComplete the static method `ToFahrenheit` so it converts a Celsius value to Fahr... | easy | ○ Not Started | Methods | Solve |
| 143 | Factorial MethodComplete the static method `Factorial` so it returns n! (the product of 1..n) us... | easy | ○ Not Started | Methods | Solve |
| 144 | Sum of Three MethodComplete the static method `SumThree` so it returns the sum of its three paramet... | easy | ○ Not Started | Methods | Solve |
| 145 | Overloaded Area MethodsMethod overloading means two methods can share a name if their parameters differ... | medium | ○ Not Started | Methods | Solve |
| 146 | Power MethodComplete the static method `Power` so it returns base raised to exp using a loop... | medium | ○ Not Started | Methods | Solve |
| 147 | Count Digits MethodComplete the static method `CountDigits` so it returns how many digits a positiv... | medium | ○ Not Started | Methods | Solve |
| 148 | Greatest Common DivisorComplete the static method `Gcd` so it returns the greatest common divisor of a ... | medium | ○ Not Started | Methods | Solve |
| 149 | Repeat String MethodComplete the static method `Repeat` so it returns the given text repeated n time... | medium | ○ Not Started | Methods | Solve |
| 150 | Reverse a Number MethodComplete the static method `Reverse` so it returns a positive integer with its d... | medium | ○ Not Started | Methods | Solve |
| 151 | Recursive FactorialComplete the static method `Factorial` so it returns n! using RECURSION (the met... | hard | ○ Not Started | Methods | Solve |
| 152 | Recursive Sum of DigitsComplete the static method `SumDigits` so it returns the sum of the digits of a ... | hard | ○ Not Started | Methods | Solve |
| 153 | Recursive FibonacciComplete the static method `Fib` so it returns the nth Fibonacci number using RE... | hard | ○ Not Started | Methods | Solve |