In the event of a major disaster, the first goal of the business is to maintain the ________ sustainable level of services for the organization

Fill in the blank(s) with correct word

minimal

Computer Science & Information Technology

You might also like to view...

What does the code in line 8 produce?

``` 1 string s, t; 2 s = “Get up and go to school!”; 3 t = “NO!”; 4 int n = s.size(); 5 int w = s.at(3); 6 int x = s.at(12); 7 s += t; 8 cout << s; ``` A. “Get up and go to school!” B. “NO!” C. “Get up and go to school!NO!” D. Nothing. That isn’t how you display strings.

Computer Science & Information Technology

Which type of site acts as a gateway to the web and offers an array of services including searching, email, shopping, news, and organized links to web resources?

A. publishing B. blog C. portal D. billboard

Computer Science & Information Technology