The answer you are looking for would be A. Hardware can be an external tool, where as software is an internal tool. Hope this helped!
Answer: fake water all across the road
Explanation:
Answer:
1. It might give your device a malicious virus or can grab your ip, so it isn't a good idea to open unknown websites. Always go to safe webs!
2. It might be a scam, let's say it is for a free iphone and you put your info in. It's a win-lose thing.
Explanation:
def average_value_in_file(filename):
f = open(filename)
total = 0
count = 0
for x in f.read().splitlines():
total += int(x)
count += 1
return total/count
print(average_value_in_file("input.txt"))
I used an input file that looks like this:
1
1
1
1