Complete the code to specify the protocol used for secure file transfer.
protocol = "[1]" # Use this for secure file transfer
SFTP stands for Secure File Transfer Protocol and is used for secure file transfers over a network.
Complete the sentence to describe the default port number for FTP.
FTP_default_port = [1]The default port number for FTP is 21.
Fix the error in the statement about SFTP's underlying protocol.
SFTP_transfers_files_over = "[1]"
SFTP works over the SSH protocol, which provides encryption and secure authentication.
Fill both blanks to complete the description of FTP and SFTP security.
FTP is [1] while SFTP is [2]
FTP is insecure because it sends data unencrypted, while SFTP is secure due to encryption.
Fill all three blanks to complete the dictionary comprehension describing file transfer protocols.
protocols = { [1]: [2] for [3] in ['FTP', 'SFTP'] }This comprehension creates a dictionary with keys as protocol names and values as uppercase versions of those names. The variable p iterates over the list.