I guess the best answer is Virus.
Virus is a malicious computer program that is designed to create annoying glitches or destroy data.
Answer:
word = input('Enter a single word: ', 's');
n = length(word);
nodupWord = [];
for i = 1:n
dup = false;
c = word(i);
for j = 1:i-1
if word(j) == c
dup = true;
break;
end
end
if ~dup
nodupWord = [nodupWord, c]; %add the non-duplicate char to end
end
end
disp(['Adjusted word: ', nodupWord])
Explanation:
The code is in Python.
Answer:
Uh I don't understand what you said.
Explanation:
N/A
Answer: Scientist
Explanation: Scientists use technology to record data, as well as using technology to study different things, for example scientists use computers to track DNA.