Ms- word it is , hope it was helpful
Administering the Federal Tax Code
Answer:
Option S will save her $15500
Explanation:
Room and board, someone is provided a sum of money in return for labor. The government does not ask for this money to be returned. This is earned by the student. Also, work-study is being given to the student, the fund in return of certainly part-time employment job which he/she does in free time. And hence it is clear from the above study that, A will save $15500, and hence this is the right answer as others are taken by the universities. And also B is saving $13000, and this is not an option given.
Answer:
The program in Python is as follows:
print("Enter a character followed by a phrase",end='')
word = input(": ")
char = word[0]
print("Occurrence: "+str((word.count(char))-1))
Explanation:
The prints an instruction to the user on how to input to the system
print("Enter a character followed by a phrase",end='')
This prompts and gets the user for input
word = input(": ")
This extracts the character from the input string
char = word[0]
This counts and prints the number of occurrence of the extracted character
print("Occurrence: "+str((word.count(char))-1))