Application of a new technology and is much superior to rival products
I think there's a typo in the question, otherwise they probably meant a 'she', since the name is Maureen.
Also, the answer is Personal hygiene and grooming.
It's evening................∆
Explanation:
def letterDigitCount(j):
dic={"digits":0,"letters":0}
for a in j:
if a.isdigit():
dic["digits"]+=1
elif a.isalpha():
dic["letters"]+=1
return dic