The term "_____" refers to a system’s ability to handle increased business volume and transactions in the future.

A. scalability
B. reliability
C. compatibility
D. applicability


Answer: A

Computer Science & Information Technology

You might also like to view...

Which of the following is not true about searching algorithms and their efficiency?

a. The major difference between various searching algorithms is the amount of effort they require to complete the search. b. Big O notation is one way to describe how likely it is that a searching algorithm will find its target. c. The effort required to perform a search or a sort is particularly dependent on the number of data elements. d. A more efficient searching algorithm is usually more complex and difficult to implement.

Computer Science & Information Technology

Suppose this is embedded in an otherwise correct and complete program. Which version of f() will be called?

Suppose class D is derived from class B, and class B has a public member function whose declaration is virtual void f();. Suppose class D has its version of the function, void f(). Here is a function definition and an invocation. ``` void g( B& b) { // other code b.f(); // other code }; g( dObject ); ``` a) D::f() b) B::f() c) This is illegal. You can’t pass a D object argument for a B reference parameter.

Computer Science & Information Technology

Bottom gridlines make it easier for workers to focus on one record at a time

Indicate whether the statement is true or false

Computer Science & Information Technology

____________ is a configurable retention time interval that specifies the length of time that the server will retain cached information for a zone

a. Cache b. TTL c. Resource time d. Start time

Computer Science & Information Technology