Answer:
Written in Python
n = int(input("How many numbers do you need to check? "))
odd = 0
even = 0
for i in range(1,n+1):
num = int(input("Enter Number: "))
if num%2 == 0:
print(str(num)+" is an even number")
even = even + 1
else:
print(str(num)+" is an odd number")
odd = odd + 1
print("You entered "+str(even)+" even number(s).")
print("You entered "+str(odd)+" odd number(s).")
Explanation:
<em>I've added the full source code as an attachment where I use comments (#) as explanation</em>
Answer: Random fluctuations.
Explanation: Time series is a series that has all the points of time in a equal time order.So, there is usually organised and having equal gaps sequence. It can be imposed on many data like real value data, discrete data,continuous data . But there is no space for the space of randomness so, random fluctuations are not predictable in it.Therefore the option (D) is the correct option.
Answer:
B. Malware
Explanation:
Malware is general to most harmful programs on a computer, as Adware is a potentially unwanted program that is designed to advertise other programs or services. And ransomware is a program that will encrypt important user files such as; documents, pictures, and videos. Spyware is a program that is designed to spy on users, examples are; using your camera without your consent, key-loggers, and taking screenshots of our desktop. Thus i believe it is malware because the question covers multiple categories.