What is the best Nmap command to use when you want to list all devices in the same network quickly after you
successfully identified a server whose IP address is 10.10.0.5?

A.
nmap -T4 -F 10.10.0.0/24
B.
nmap -T4 -q 10.10.0.0/24
C.
nmap -T4 -O 10.10.0.0/24
D.
nmap -T4 -r 10.10.1.0/24
A
Correct answer is C
-O would get the job done as well, but note that it says “Quickly’.
-F scans few ports and yields results quicker.
Answer: A