Suppose you work at a business unit that has group of people who would rather wait to try a new technique.  They listen to and follow the opinion leaders.  They would be classified as the _________. 

A. innovators
B. early adopters
C. early majority
D. late majority

Answer: C

Computer Science & Information Technology

You might also like to view...

What is the output of the following code?

``` #include int main() { using namespace std; double a[3] = {1.1, 3.3, 2.2}; cout << a[0] << " " << a[1] << " " << a[2] << endl; a[1] = a[2]; cout << a[0] << " " << a[1] << " " << a[2] << endl; } ```

Computer Science & Information Technology

The dispatcher schedules each thread without regard to the process to which the thread belongs, meaning that, all else being equal, the same process implemented with more threads receives a greater share of execution time. Name a disadvantage of this strategy.

What will be an ideal response?

Computer Science & Information Technology