Which of the following is not a function of the operating system?
A. managing resources
B. running applications
C. providing Internet access
D. providing a user interface
Answer: C
You might also like to view...
To continue page numbers from one section to the next, the ________ option should be chosen
Fill in the blank(s) with correct word
Answer the following statements true (T) or false (F)
1. What is the value of the following function call, given the function definition that follows? keepGoing (3, 4) // function call bool keepGoing (int a, int b) // function definition { return ( a != b – 1) } 2. The following code is syntactically correct: enum aFriend {jane, judy, jim}; enum enemy {tim, tom, trudy}; aFriend mine; enemy yours; … if (mine < yours) … 3. The following code is syntactically correct: enum shopping {milk, eggs, juice}; shopping item1, item2; … if (item1 < item2) … 4. If you write function to input and output variables of an enumeration type, the type definition must have global scope. 5. You cannot use an enumeration type as a cast operator.