The following executable Python code, stored as a file, doesn’t execute from a file manager on a Linux machine. print("Welcome to Real Python!") What should we add to the first line of the file to ensure it runs? Select all that apply. code example

Example 1: The import statements in a JSP program will be written within __________________

The import statements in a JSP program will be written within___________________

Example 2: You will be passed a file path P and string S on the command line. Output the number of times the string S appears in the file P.

You will be passed a file path P and string S on the command line. Output the number of times the string S appears in the file P.

file = open(P, 'r')
ptext = file.read()
print(ptext.count(S))
file.close()