Answer:
Option A) Demand for CDs has decreased, causing equilibrium price and quantity to decrease.
is the correct answer.
Explanation:
- File-sharing is a common practice nowadays. It helps us by providing access to different files (audio , video, images, documents) to others in a faster way.
- A wide range of files are shared daily by using different means of file-sharing including computer networks and peer-to-peer networking.
- Formerly, the data was shared using CDs but now this system has been replaced with the advent of internet.
- Usage of CDs is dropped drastically and hence their demand is decreased.
- So now the prices of CDs are not in equilibrium and their quantity is also decreased.
i hope it will help you!
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.
A good website to learn coding is called Lynda.com. It costs money but its well worth it!
You have add more for anyone to be able to answer this, sorry