Multiple choice technology What does it mean ${parameter:-5} If parameter exists and isn't null, return its value; otherwise return 5 If parameter exists and isn't null, return its value; otherwise set it to 5 and then return it If parameter exists and isn't null, return 5; otherwise return null. None of the above Reveal answer Fill a bubble to check yourself A Correct answer Explanation ${parameter:-word} is parameter expansion that returns 'word' if parameter is unset or null, but doesn't assign it. This differs from ${parameter:=word} which would assign the value. Option A correctly describes this default value behavior.