What Windows utility can be used to find out what processes are launched at startup?

A. Task Manager
B. Microsoft Management Console
C. System Configuration
D. Computer Management


Answer: C

Computer Science & Information Technology

You might also like to view...

Consider a class that uses the following variables to implement an array-based stack:

``` String[] s = new String[100]; int top = -1; // Note top == -1 indicates stack is empty ``` return temp; B) if (top == -1) throw new RuntimeException("Empty Stack"); s[top] = null; top--; return s[top]; C) if (top == -1) throw new RuntimeException("Empty Stack"); String temp = s[top]; s[top] = null; top--; return temp; D) None of the above

Computer Science & Information Technology

System A runs exactly one process per user. System B can support many processes per user. Discuss the organizational differences between operating systems A and B with regard to support of processes.

What will be an ideal response?

Computer Science & Information Technology

Which of the following weaknesses in an organization can create an opportunity for fraud?

A) Pressure from management B) Allowing personnel to work unsupervised C) Questionable hiring practices D) Lack of an audit trail

Computer Science & Information Technology

Which aggregate function is used to find the smallest value of a value expression?

a. AVG(value expression) b. SUM(value expression) c. MAX(value expression) d. MIN(value expression)

Computer Science & Information Technology