Can someone pls help me with this

Which of the following variables have local scope? (Select all that apply.)

pokemonCards

money_spent

currentSavings

total

totalCash

shoveling

snow_shoveling

savings

Which of the following variables have global scope? Select all that apply.

total

money_spent

snow_shoveling

shoveling

currentSavings

totalCash

savings

pokemonCards


Which of the following function bodies for totalMoney are equivalent to the code above? Select all that apply.

moneyIn = savings + snow_shoveling
moneyOut = -money_spent
return moneyIn - moneyOut

return savings + snow_shoveling - money_spent



savings = savings + snow_shoveling
savings = savings - money_spent
return savings



moneyIn = savings + snow_shoveling
moneyOut = money_spent
return moneyIn - moneyOut

Can someone pls help me with this Which of the following variables have local scope Select all that apply pokemonCards moneyspent currentSavings total totalCash class=