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:
A. data mart
Explanation:
Data mart refers to a structure for storing and retrieving data. Often times, the data mart is usually specific to a business line.
The data contained herein is also specific to a particular department and by so doing this facilitate easy isolation, use and development of the data.
The major advantage of creating data marts is for easy accessibility of data.
Answer:
Two or more languages are used for making one particular software.
If you're using an apple product to do video editing, then iMovie is probably the best way to do that.
If you're on Windows and you're looking for a free video editing website, I'd suggest WeVideo. Although WeVideo does add watermarks to your videos, editing is pretty easy when using it.