Answer:
A
Explanation:
I think it would be A because i have never heard of a virus scanner
No. Don’t be lazy and do it yourself unless you don’t know
Answer:
The answer is "option D"
Explanation:
Plagiarism is the way of stealing some other person's ideas or words and using them as their work. It is divided into four parts that are Direct Plagiarism, Self Plagiarism, Mosaic Plagiarism, and Accidental Plagiarism. In the given question other options are not correct that can be described as:
- In option A, It is software that is used to provide someone else's identity.
- In option B, It refers to white-collar crime, in which the property transfer to he or she are misallocated by a person or entity.
- In option C, It is a method that is used to increase the speed of a computer by using high-speed RAM.
Answer:
The function is as follows:
import random
import string
def solution(riddle):
s = list(riddle)
for i in range(len(riddle)):
alpha = "".join(random.choice(string.ascii_letters) for x in range(1))
alpha = alpha.lower()
if s[i] == '?':
if i > 0 and i < len(s)-1:
if s[i+1] != alpha:
s[i] = alpha
elif s[i-1] != alpha:
s[i] = alpha
else:
i=i
else:
if i == 0:
if s[1] != alpha:
s[i] = alpha
else:
i = i
else:
if s[i-1] != alpha:
s[i] = alpha
else:
i = i
riddle = ""
for ele in s:
riddle+=ele
return riddle
Explanation:
See attachment for explanation where comments are used to explain some lines