A ____ case is a specific way of using the system by performing some part of the functionality.
A. positive-use
B. negative-use
C. risk-use
D. designed-use
Answer: A
Computer Science & Information Technology
You might also like to view...
What is the output of the following code:
int p = 7, q = 4; if (p > 10) p = p + 3; else if (q > 6) p = p – 2; else p = p + 1; cout << p; a) 8 b) 10 c) 5 d) 7
Computer Science & Information Technology
For any nonzero 8-bit x, which of the following does not result in zero?
a. x &= (~x) b. x ^= x c. x <<= 8 d. x |= x
Computer Science & Information Technology