1. Check Point SK30583, "How to use tcpdump": This article details the usage of tcpdump on Check Point appliances. It lists -i as the option to "Listen on a particular interface." This directly supports the use of -i to limit the scope of the capture.
2. tcpdump(8) Linux man page: The official manual for tcpdump confirms the function of the flags.
-i interface: "Listen on interface. If unspecified, tcpdump searches the system interface list for the lowest numbered, configured up interface (excluding loopback)..." On some systems, the any device can be used to capture from all interfaces.
-O: "Do not run the packet-matching code optimizer."
-I: "Put the interface in 'monitor mode'; this is supported only on IEEE 802.11 Wi-Fi interfaces..."
3. Check Point SK162334, "'fw monitor' command": This article describes the flags for the fw monitor utility, which is often confused with tcpdump. It shows that -I is a valid flag for fw monitor (specifying an inspection point), explaining the likely source of confusion for option C. It also shows -o as the flag for an output file, explaining the confusion for option A.