I came across a question worded similarly to the following:
Which of the following outlines the possibilities of not properly setting and tuning thresholds of a behavior-based IDS:
A) If the threshold is set too low, non-intrusive activities are considered attacks (false positives). If the threshold is set too high, then malicious activities are not identified (false negatives).

If the threshold is set too low, non-intrusive activities are considered attacks (false negatives). If the threshold is set too high, then malicious activities are not identified (false positives).
C) If the threshold is set too high, non-intrusive activities are considered attacks (false positives). If the threshold is set too low, then malicious activities are not identified (false negatives).
D) If the threshold is set too high, non-intrusive activities are considered attacks (false positives). If the threshold is set too high, then malicious activities are not identified (false negatives).
I selected "A", but the answer is "C".
Here's an example that supports my answer:
- Normal traffic = X
- Threshold = 5
Normal traffic "N" and abnormal traffic "A" are represented by the following:
- N = the range between X - 5 and X + 5
- A = traffic greater than X + 5 or less than X - 5
If I lower the threshold from 5 to 4, more non-intrusive activities will cause the IDS to trigger an attack.
Conversely, if I raise the threshold from 5 to 6, more malicious activities will not be identified.
Please help me reconcile my logic above to answer "C".