| 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 |
| 352 | Is Odd MethodComplete the static method `IsOdd` so it returns `true` when its parameter is an... | easy | ○ Not Started | Methods | Solve |
| 353 | Multiply MethodComplete the static method `Multiply` so it returns the product of its two param... | easy | ○ Not Started | Methods | Solve |
| 354 | Negate MethodComplete the static method `Negate` so it returns the parameter with its sign fl... | easy | ○ Not Started | Methods | Solve |
| 355 | Triple MethodComplete the static method `Triple` so it returns its parameter multiplied by th... | easy | ○ Not Started | Methods | Solve |
| 356 | Increment MethodComplete the static method `Increment` so it returns one more than its parameter... | easy | ○ Not Started | Methods | Solve |
| 357 | Last Digit MethodComplete the static method `LastDigit` so it returns the last digit of a non-neg... | easy | ○ Not Started | Methods | Solve |
| 358 | Rectangle Perimeter MethodComplete the static method `Perimeter` so it returns the perimeter of a rectangl... | easy | ○ Not Started | Methods | Solve |
| 359 | Shout MethodComplete the static method `Shout` so it returns its string parameter converted ... | easy | ○ Not Started | Methods | Solve |
| 360 | Square Root MethodComplete the static method `SquareRoot` so it returns the square root of its par... | easy | ○ Not Started | Methods | Solve |
| 361 | To Celsius MethodComplete the static method `ToCelsius` so it converts a Fahrenheit temperature t... | easy | ○ Not Started | Methods | Solve |
| 362 | Half It MethodComplete the static method `HalfIt` so it returns half of its integer parameter ... | easy | ○ Not Started | Methods | Solve |
| 363 | Percentage MethodComplete the static method `PercentOf` so it returns what percent `part` is of `... | easy | ○ Not Started | Methods | Solve |
| 364 | Full Name MethodComplete the static method `FullName` so it joins a first and last name with a s... | 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 |
| 365 | Is Prime MethodWrite the static method `IsPrime` so it returns `true` when its parameter is a p... | medium | ○ Not Started | Methods | Solve |
| 366 | Count Vowels MethodWrite the static method `CountVowels` so it returns how many vowels (`a`, `e`, `... | medium | ○ Not Started | Methods | Solve |
| 367 | Params Sum MethodWrite the static method `Sum` using a `params int[]` parameter so it can accept ... | medium | ○ Not Started | Methods | Solve |
| 368 | Swap With Ref MethodWrite the `void` static method `Swap` using two `ref int` parameters so it excha... | medium | ○ Not Started | Methods | Solve |
| 369 | Divide With Remainder MethodWrite the static method `DivMod` so it returns the quotient of `a` divided by `b... | medium | ○ Not Started | Methods | Solve |
| 370 | Grade Letter MethodWrite the static method `Grade` so it returns a letter grade for a numeric `scor... | medium | ○ Not Started | Methods | Solve |
| 371 | Sign MethodWrite the static method `Sign` so it returns `1` when its parameter is positive,... | medium | ○ Not Started | Methods | Solve |
| 372 | Is Leap Year MethodWrite the static method `IsLeapYear` so it returns `true` when the given year is... | medium | ○ Not Started | Methods | Solve |
| 373 | Clamp MethodWrite the static method `Clamp` so it forces `value` to stay within an inclusive... | 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 |
| 374 | Recursive Power MethodWrite the static method `Power` so it computes `baseNum` raised to the power `ex... | hard | ○ Not Started | Methods | Solve |
| 375 | Recursive GCD MethodWrite the static method `Gcd` so it returns the greatest common divisor of two n... | hard | ○ Not Started | Methods | Solve |
| 376 | Recursive Reverse String MethodWrite the static method `Reverse` so it returns its string parameter reversed, u... | hard | ○ Not Started | Methods | Solve |