Answer:
Trojan horse
Explanation:
mostly all the above mentioned use replication to infect computers but the one that uses replication to invest multiple computers at a time is Trojan horse.
hope it helps .
primes = 0
for x in range(500, 701):
count = 1
for w in range(2, x+1):
if x % w == 0:
count += 1
if count < 3:
print(x, end=" ")
primes += 1
print("\nThere are {} prime numbers between 500 and 700".format(primes))
I hope this helps!