Part 1
Problem scenario: You have a PowerShell function that should add two parameter numbers and display their sum. It is displaying the input when it should not. No sum is being displayed. There are no error messages. What should you do?
Solution: Your code may look like this:
function contint ($a, $b) {
$c = $a + $b
…