Answer:
Subject
Explanation:
The kind of word that is pronoun in bold letters is "Subject".
In Example
We get our paychecks on Friday, and I always need mine.
There We and I are subjects.
Answer:
I wrote this myself, it should be working. I think this is what the instructions were looking for.
The code below should return
Squared: 1296
Mod: 0
Quadrupled: 16
Explanation:
def threeParams(squared, mod, quadruples):
array = [squared, mod, quadruples]
array[0] = squared ** 2
array[1] = mod % 5
array[2] = quadruples * 4
return array
valueArr = threeParams(36, 15, 4)
print(f"Squared: {valueArr[0]}\nMod: {valueArr[1]}\nQuadrupled: {valueArr[2]}")
Answer:
a string
Explanation:
bcz that's the only answer
Answer:
Privacy
Explanation:
I'm not sure but it matches the description you gave.