Answer:
Data, Sort and Filter, Sort.
Explanation:
Just did the test.
<span>It should be single-user/multitasking os.</span>
<h2>
Answer:</h2>
//Method definition of words_typed
//The return type is int
//Takes two int parameters: typingSpeed and timeInterval
public static int words_typed(int typingSpeed, int timeInterval) {
//Get the number of words typed by
//finding the product of the typing speed and the time interval
//and then dividing the result by 60 (since the typing speed is in "words
// per minute" and the time interval is in "seconds")
int numberOfWords = typingSpeed * timeInterval / 60;
//return the number of words
return numberOfWords;
} //end of method declaration
<h2>
Explanation:</h2>
The code above has been written in Java and it contains comments explaining each of the lines of the code. Please go through the comments.