0
0
Computer Networksknowledge~10 mins

FTP and SFTP for file transfer in Computer Networks - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to specify the protocol used for secure file transfer.

Computer Networks
protocol = "[1]"  # Use this for secure file transfer
Drag options to blanks, or click blank then click option'
ASMTP
BHTTP
CFTP
DSFTP
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing FTP instead of SFTP for secure transfer.
2fill in blank
medium

Complete the sentence to describe the default port number for FTP.

Computer Networks
FTP_default_port = [1]
Drag options to blanks, or click blank then click option'
A80
B22
C21
D443
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing FTP port 21 with SSH port 22.
3fill in blank
hard

Fix the error in the statement about SFTP's underlying protocol.

Computer Networks
SFTP_transfers_files_over = "[1]"
Drag options to blanks, or click blank then click option'
ASSH
BHTTP
CFTP
DSMTP
Attempts:
3 left
💡 Hint
Common Mistakes
Thinking SFTP uses FTP protocol.
4fill in blank
hard

Fill both blanks to complete the description of FTP and SFTP security.

Computer Networks
FTP is [1] while SFTP is [2]
Drag options to blanks, or click blank then click option'
Ainsecure
Bsecure
Cfast
Dslow
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up which protocol is secure.
5fill in blank
hard

Fill all three blanks to complete the dictionary comprehension describing file transfer protocols.

Computer Networks
protocols = { [1]: [2] for [3] in ['FTP', 'SFTP'] }
Drag options to blanks, or click blank then click option'
Ap.lower()
Bp.upper()
Cp
Dprotocol
Attempts:
3 left
💡 Hint
Common Mistakes
Using wrong variable names or methods.