Administrative accounts across a large number of Windows and Linux servers. Which of the following offers the BEST solution?
A. Modify the system baseline to increase log retention and enable a host firewall
B. Monitor LDAP and Active Directory for the use of Administrative accounts
C. Add or enable a NIDS signature for administrative activity
D. Implement centralized log collection for each server and define a log review process
Answer: B. Monitor LDAP and Active Directory for the use of Administrative accounts
You might also like to view...
In C#, arithmetic expressions must be written in form.
a) straight-line b) top-bottom c) left-right d) right-left
Which of the following is NOT true about the Find Unmatched query wizard?
A) If a one-to-many relationship exists between the two tables, then the wizard will join the two correct fields automatically. B) The wizard uses the primary key from the first table and matches it with the foreign key in the second table in order to determine if there are unmatched records. C) The Find Unmatched Query Wizard is designed to find records in a table or query that have no related records in the same table or query. D) The wizard will try to match the primary key field and the foreign key field if there is a one-to-many relationship between the two tables.
What are the two fields required by the Node class in the linked implementation of a stack?
A. prev, items B. prev, data C. items, next D. data, next
Analyze the following statement:
``` double sum = 0; for (double d = 0; d < 10;) { d += 0.1; sum += sum + d; } ``` a. The program has a compile error because the adjustment is missing in the for loop. b. The program has a compile error because the control variable in the for loop cannot be of the double type. c. The program runs in an infinite loop because d < 10 would always be true. d. The program compiles and runs fine.