Which of the following would be sent to an SNMP network management system in the event that a failure or predefined threshold was crossed?
A. SNMP trap
B. History log
C. System log
D. SNMP agent
Answer: A. SNMP trap
Computer Science & Information Technology
You might also like to view...
Hot spots offer mobile users the ability to connect to the Internet with their Wi-Fi enabled wireless computers and devices.
Answer the following statement true (T) or false (F)
Computer Science & Information Technology
What is the Big-O for the following function?
void algo(int n, int x) { for (int k = 0; k < n; ++k) if (x < 99) { for (int i = 0; i < n; ++i) for (int j = 0; j < i; ++j) System.out.println(”x = ” + x); } else { System.out.println(”x = ” + x); } } a. O(n^3) b. O(n log n) c. O(n) d. O(n^2)
Computer Science & Information Technology