Which two statements about using Python for network automation with Cisco devices are true? (Choose two.)
Correct because Netmiko is built on Paramiko and provides a higher-level interface for SSH connections, including automatic handling of device prompts and authentication.
Why this answer
The correct answers highlight key aspects of Python automation: Netmiko simplifies SSH management by handling authentication and connection, and NAPALM provides a vendor-agnostic API for retrieving operational data. The incorrect options misrepresent Python's role: Python does not compile to native machine code (it is interpreted), netmiko is not limited to Cisco (it supports many vendors), and paramiko is lower-level than Netmiko, not the other way around.