Answer:
Explanation:
The following is written in Python. It creates the dictionary as requested and prints it out to the output file as requested using the correct format for various shows with the same number of seasons.The output can be seen in the attached picture below.
mydict = {}
with open("file1.txt", "r") as showFile:
for line in showFile:
cleanString = line.strip()
seasons = 0
try:
seasons = int(cleanString)
print(type(seasons))
except:
pass
if seasons != 0:
showName = showFile.readline()
if seasons in mydict:
mydict[seasons].append(showName.strip())
else:
mydict[seasons] = [showName.strip()]
f = open("output.txt", "a")
finalString = ''
for seasons in mydict:
finalString += str(seasons) + ": "
for show in mydict[seasons]:
finalString += show + '; '
f.write(finalString[:-2] + '\n')
finalString = ''
f.close()
Answer:
Spyware is the most harmful virus.
It enters into someones computer as a spy and steals the ones personal information, data and other codes.
Explanation:
Answer:
The answer is (B) Maximum password age.
Explanation:
To prevent several changing of passwords by a user in a day, the maximum times a password can be rest within a day is normally set by the system administrator.
The setting ensures the password is returned to the current settings of the password on the system for the user and prevents unnecessary changing of passwords in a day by user.
The RAM of G.Skill Trident Z Neo 3600 will be highly recommended for online and video lecturing.
<h3>What is RAM?</h3>
This is referred to random access memory and store information which can be retrieved quickly.
The RAM of G.Skill Trident Z Neo 3600 is 32GB which ensures the speed of the processor is fast.
Read more about RAM here brainly.com/question/13748829
#SPJ9