Answer:
C
Explanation:
Computer surveillance refers to spying that allows the viewer to gain access of all activity on the given computer.
Answer:
See attached file for detailed solution.
Explanation:
See attached file for explanation.
Just wanna let you know I could be wrong but I think 4 passes
In python 3.8:
user_input = input().split()
x = user_input[0]
char = user_input[-1]
for w in range(1,int(x)+1):
if char in user_input[w]:
print(user_input[w])
I hope this helps