Answer:
The Python code is given below for each question.
Explanation:
1:
if __name__ == '__main__':
f = open('golf.txt', 'w')
n = int(input("Enter number of players:"))
for i in range(n):
name = input("Enter name of player number " + str(i + 1) + ":")
score = int(input("Enter score of player number " + str(i + 1) + ":"))
f.write(name + "\n" + str(score) + "\n")
f.close()
2:
try:
with open('golf.txt') as r:
lines = r.readlines()
for i in range(0, len(lines), 2):
print("Name:", lines[i].strip())
print("Score:", lines[i+1].strip())
print()
except FileNotFoundError:
print("golf.txt is not found!")
1. Answer is B (D9=<span>A2+B3)
2. </span><span>C. identifies how many cells with data were in the range
3. </span><span>A. ascending (smallest to largest)
</span><span>4. A. the current worksheet </span>
Answer:
1
Explanation:
Analytics will count it a One (‘1’) Unique Event, even if a user watches a video with event tracking three times but in a single session.
Answer:
High
Explanation:
Python is high level; Bytecode is intermediate
Answer:
1. Formula is A2 : A9 = COUNT( A2: A9 ) = 8
2. Formula is SUM( A2: A9 ) = 36
3. Formula is B2 : B9 = COUNT( B2: B9) = 8
4. Formula is MAX( C2: C9) = 5
5. Formula is MIN( C4: C8) = 3
6. Formula is SUM( C5 - C6) = 0
7. Formula is AVERAGE( C2: C9) = 4
Explanation: Have a nice day!✌️