• Installed a program containing ransomware/malware. (Do not accept downloaded without inferring it was installed)
• Opened an email attachment containing malware.
• Opened a file containing a malicious macro.
• Left his computer unsecure allowing someone else to install malware on it. (Should include an example, e.g. not logging off)
Answer:
Explanation:
n = eval(input('Enter # of number you want to enter: '))
list_=[]
for i in range(n):
number = eval(input("enter number: "))
list_.append(number)
if i == n-1:
maximum = max(list_)
minimum = min(list_)
print("maximum : "+str(maximum))
print("minimum : "+str(minimum))
Answer:
num = float(input("Enter a number: "))
x =int(num)
y =float(num - x)
print(y)
Explanation:
It works I just did it!