Which planning requires a careful study of the external environment surrounding the organization and assessing where the organization fits within it?

a. Operational planning
b. Contingency planning
c. Functional planning
d. Strategic planning


d. Strategic planning
Strategic planning requires careful study of the external environment surrounding the organization and assessing where the organization fits within it. The analysis begins with an examination of the industry in which the organization competes: What is the size of the market? How fast is it growing or shrinking? What are the significant industry trends?

Computer Science & Information Technology

You might also like to view...

When the nested loop of lines 8-11 is done executing, why is it that lines 10-11 will have been executed exactly n times?

``` 1 COUNTING-SORT( A ) 2 make an Array C of length k + 1 3 for each i, from 0 to k 4 C[ i ] = 0 5 for each j, from 0 to the length of A - 1 6 C[ A[ j ] ]++ 7 j = 0 8 for each i from 0 to k 9 for each m from 1 to C[ i ] 10 A[ j ] = i 11 j++ ``` A. C[i] will be 0 much of the time, but it will be equal to n one time B. Each C[ i ] will be equal to n / (k + 1) C. Array A has a blocker in it, which prevents more than n elements being written into it. D. All the C[ i ], from i = 0 to i = k, when added together, will give the total number of elements in array A

Computer Science & Information Technology

Packets traveling on a single line always go to a single destination.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Given the absolute pathname /tutorial02/index.htm, the index.htm file is in the ____ folder.

A. home B. tutorial02 C. index D. tutorial

Computer Science & Information Technology

Write a Web page that allows the user to select one or more books by using check boxes. Display the name of each book and its price. Display the current total in a text box at the bottom of the page. When a book is selected (or unselected), update the total. Use VBScript to perform any arithmetic operations and to format the total.

What will be an ideal response?

Computer Science & Information Technology