The variable strFirst's scope is _____.

def usernameMaker (strFirst, strLast):
return strFirst + strLast[0]

def passwordMaker (strA, numC):
return strA + str(numC)

# the main part of your program that calls the function
username = usernameMaker ('Chris', 'Smith')
dogName = 'Sammy'
favoriteNumber = 7
password = passwordMaker (dogName,favoriteNumber)


the entire program
the entire program

the usernameMaker function
the usernameMaker function

the passwordMaker function
the passwordMaker function

the main part of the program that calls the funcion

ACCESS MORE